Python OpenCV videocapture 不从源捕获视频
Posted
技术标签:
【中文标题】Python OpenCV videocapture 不从源捕获视频【英文标题】:Python OpenCV videocapture not capturing video from source 【发布时间】:2020-12-19 23:49:14 【问题描述】:所以我有一段时间没有使用 python 所以它不是很漂亮。我首先对我将使用的一些目录进行硬编码,源目录是视频文件所在的位置,imageOutput 是一个目录,其中包含每个视频的子目录,包含捕获的图像文件。
self.path = os.getcwd().replace(os.sep, '/')
self.sourceDirectory = self.path + "/SourceFiles"
self.imageOutput = self.path + "/Temp"
我将所有视频放入一些列表中
os.chdir(self.sourceDirectory)
for file in glob.glob('*.mp4'):
self.videoList.append(file)
self.videoCount += 1
self.videoList.sort(key=lambda f: int(re.sub('\D', '', f)))
到目前为止一切正常,下一步是循环遍历源目录中的每个视频,并每隔 n 秒(大致)拍摄帧并将它们作为图像保存在 imageOutput 目录中
for i in range(self.videoCount):
imageCount = 0
print("Generating images from " + self.videoList[i])
videoCapture = cv2.VideoCapture(self.sourceDirectory + "/" + self.videoList[i])
success, image = videoCapture.read()
cv2.imshow('image', image)
fps = videoCapture.get(cv2.CAP_PROP_FPS)
print("raw fps:" + str(int(fps)))
multiplier = int(fps) * int(self.capRate)
print("CANCEL MULTIPLIER = " + str(multiplier))
print("Capture : " + self.sourceDirectory + "/" + self.videoList[i] + " " + str(success) + " at " + str(
fps) + " FPS")
while success:
frameId = int(round(videoCapture.get(1)))
success, image = videoCapture.read()
if frameId % int(multiplier) < 1:
cv2.imwrite(self.imageOutput + "/" + str(i) + "/frame%d.jpg" % imageCount, image)
print("saved as " + self.imageOutput + "/" + str(i) + "/frame%d.jpg" % imageCount)
imageCount += 1
videoCapture.release()
print(self.videoList[i] + " is Complete with " + str(imageCount) + " images")
print("Finalized Video Processing")
我已经尝试了很多不同的方法来让它工作,目前,它正在运行,这是它做它的输出日志;但是它只会随着数字的增加而永远循环
Generating images from chapter44.mp4
raw fps:29
CANCEL MULTIPLIER = 29
Capture : C:/Users/Isaac/PycharmProjects/Panovid/SourceFiles/chapter44.mp4 True at 29.97002997002997 FPS
saved as C:/Users/Isaac/PycharmProjects/Panovid/Temp/0/frame0.jpg
saved as C:/Users/Isaac/PycharmProjects/Panovid/Temp/0/frame1.jpg
saved as C:/Users/Isaac/PycharmProjects/Panovid/Temp/0/frame2.jpg
saved as C:/Users/Isaac/PycharmProjects/Panovid/Temp/0/frame3.jpg
我尝试使用 im.show('image', image) 在循环中的各个点查看图像,这会打开一个停止响应的灰色图像。日志显示opencv在读取视频捕获时表示成功,但是无法显示屏幕截图可能意味着它不起作用?
【问题讨论】:
【参考方案1】:它确实有效,但是,我未能在保存图像的输出目录中创建目录,如果目录不存在,opencv 似乎不会创建目录!
【讨论】:
以上是关于Python OpenCV videocapture 不从源捕获视频的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 VideoCapture 在 OpenCV+Python 中读取或播放视频
OpenCV 和 Python 多线程 - 在 VideoCapture 对象中搜索
Opencv python| cv. VideoCapture.get() 参数介绍
Python OpenCV:Python 2.7 到 Python 3.5 之间的 VideoCapture 差异