您可以使用 openCV 从视频中获取帧,如本例所示,并使用 matplotlib 在顶部绘制图表,例如
import cv2
import matplotlib.pyplot as plt
import numpy as np
filename = './SampleVideo.mp4'
cap = cv2.VideoCapture(filename)
try:
frames = int(cap.get(cv2.cv.CV_CAP_PROP_FRAME_COUNT))
width = int(cap.get(cv2.cv.CV_CAP_PROP_FRAME_WIDTH))
height = int(cap.get(cv2.cv.CV_CAP_PROP_FRAME_HEIGHT))
except AttributeError:
frames = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
fig, ax = plt.subplots(1,1)
plt.ion()
plt.show()
#Setup a dummy path
x = np.linspace(0,width,frames)
y = x/2. + 100*np.sin(2.*np.pi*x/1200)
for i in range(frames):
fig.clf()
flag, frame = cap.read()
plt.imshow(frame)
plt.plot(x,y,'k-', lw=2)
plt.plot(x[i],y[i],'or')
plt.pause(0.01)
if cv2.waitKey(1) == 27:
break
Run Code Online (Sandbox Code Playgroud)
我从这里得到了视频。
| 归档时间: |
|
| 查看次数: |
12998 次 |
| 最近记录: |