相关文章推荐
博学的柳树  ·  服务端主动推送数据,除了 ...·  1 年前    · 
有腹肌的板凳  ·  项目记事【Git】:git pull 出错 ...·  2 年前    · 
风流的开水瓶  ·  python打包exe文件并隐藏执行CMD命 ...·  2 年前    · 
打酱油的椰子  ·  for循环与mysql的分页查询_mysql ...·  2 年前    · 
性感的小蝌蚪  ·  Error AADSTS50020 - ...·  2 年前    · 
Code  ›  如何实现在jupyter notebook中播放视频(不停地展示图片)开发者社区
jupyter notebook time函数 capture
https://cloud.tencent.com/developer/article/1740015
谈吐大方的筷子
2 年前
作者头像
砸漏
0 篇文章

如何实现在jupyter notebook中播放视频(不停地展示图片)

前往专栏
腾讯云
开发者社区
文档 意见反馈 控制台
首页
学习
活动
专区
工具
TVP
文章/答案/技术大牛
发布
首页
学习
活动
专区
工具
TVP
返回腾讯云官网
社区首页 > 专栏 > 恩蓝脚本 > 如何实现在jupyter notebook中播放视频(不停地展示图片)

如何实现在jupyter notebook中播放视频(不停地展示图片)

作者头像
砸漏
发布 于 2020-11-04 10:00:06
1.7K 0
发布 于 2020-11-04 10:00:06
举报

在解决 图像处理 问题的时候,可以利用opencv打开视频,并一帧一帧地show出来,但是要用到imshow(),需要本地的界面支持。

代码如下

# -*- coding:utf-8*-
import cv2
capture = cv2.VideoCapture("D:\dataset\chip_gesture.ts")
# 图像处理函数
def processImg(img):
 # 画出一个框
 cv2.rectangle(img, (500, 300), (800, 400), (0, 0, 255), 5, 1, 0)
 # 上下翻转
 # img= cv2.flip(img, 0)
 return img
# 一帧帧地show
while (capture.isOpened()):
 ret, frame = capture.read()
 if not ret:
 break
 result = processImg(frame)
cv2.imshow('result', result)
 # esc键退出
 if 0xFF & cv2.waitKey(30) == 27:
 break
cv2.destroyAllWindows()
capture.release()

但是当我们使用jupyter notebook来编写python程序的时候,cv2.imshow()就不行了。 最终的解决办法是使用ipython.display模块来解决。

from IPython.display import clear_output, Image, display, HTML
import time
import cv2
import base64
current_time = 0
# 图像处理函数
def processImg(img):
 # 画出一个框
 cv2.rectangle(img, (500, 300), (800, 400), (0, 0, 255), 5, 1, 0)
 # 上下翻转
 # img= cv2.flip(img, 0)
 # 显示FPS
 global current_time
 if current_time == 0:
  current_time = time.time()
 else:
  last_time = current_time
  current_time = time.time()
  fps = 1. / (current_time - last_time)
  text = "FPS: %d" % int(fps)
  cv2.putText(img, text , (0,100), cv2.FONT_HERSHEY_TRIPLEX, 3.65, (255, 0, 0), 2)
 return img
def arrayShow(imageArray):
 ret, png = cv2.imencode('.png', imageArray)
 encoded = base64.b64encode(png)
 return Image(data=encoded.decode('ascii'))
video = cv2.VideoCapture("/home/mvg/zmc/playgroud/远大前程27.mp4")
while(True):
  clear_output(wait=True)
  ret, frame = video.read()
  if not ret:
   break
  lines, columns, _ = frame.shape
  frame = processImg(frame)
  frame = cv2.resize(frame, (int(columns / 4), int(lines / 4)))
  img = arrayShow(frame)
  display(img)
  # 控制帧率
 
推荐文章
博学的柳树  ·  服务端主动推送数据,除了 WebSocket 你还能想到啥?-腾讯云开发者社区-腾讯云
1 年前
有腹肌的板凳  ·  项目记事【Git】:git pull 出错 error: cannot lock ref 'refs/remotes/origin/feature/hy78861': is at d4244546c8cc3827491cc82878a23c708fd0401d
2 年前
风流的开水瓶  ·  python打包exe文件并隐藏执行CMD命令窗口问题_python_脚本之家
2 年前
打酱油的椰子  ·  for循环与mysql的分页查询_mysql中的for循环求1+2+3_罗卜丝粉的博客-CSDN博客
2 年前
性感的小蝌蚪  ·  Error AADSTS50020 - User account from identity provider does not exist in tenant - Active Directory | Microsoft Learn
2 年前
今天看啥   ·   Py中国   ·   codingpro   ·   小百科   ·   link之家   ·   卧龙AI搜索
删除内容请联系邮箱 2879853325@qq.com
Code - 代码工具平台
© 2024 ~ 沪ICP备11025650号