- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在执行模板匹配,在 cv2.imshow()
中似乎一切正常。我想编写一个视频,其中包含模板匹配过程产生的所有帧。我的部分代码包括调整模板图像大小和视频帧尺寸,我不知道视频编写问题是否来自这一步。错误主要来自 out.write(frame)
部分。
使用下面的代码后出现以下错误:
cv2.error: OpenCV(3.4.2) C:\Miniconda3\conda-bld\opencv-suite_1534379934306\work\modules\videoio\src\cap_ffmpeg.cpp:296: error: (-215:Assertion failed) 图片.depth() == 0 in function 'cv::`anonymous-namespace'::CvVideoWriter_FFMPEG_proxy::write'
有什么想法吗?
import cv2
import numpy as np
cap = cv2.VideoCapture(input_video_file)
fps = int(round(cap.get(5)))
frame_width = int(cap.get(3))
frame_height = int(cap.get(4))
fourcc = cv2.VideoWriter_fourcc(*'mp4v') # saving output video as .mp4
out = cv2.VideoWriter(output_video_file, fourcc, fps, (frame_width, frame_height))
# while loop where the real work happens
while cap.isOpened():
ret, frame = cap.read()
if ret:
if cv2.waitKey(28) & 0xFF == ord('q'):
break
# Read template image from path
template = cv2.imread('D:\KU_Leuven\Computer_Vision\Assignment_1\Videos\Raspberry_Template.jpg',0)
h2,w2 = template.shape[:2]
#resize video frame dimensions
scale_percent =60 # percentage of original video frame size
width = int(frame.shape[1] * scale_percent / 100)
height = int(frame.shape[0] * scale_percent / 100)
dim = (width, height)
frame = cv2.resize(frame , dsize = dim)
#resize template dimensions
scale_percent = 16# percentage of original template image size
width = int(template.shape[1] * scale_percent / 100)
height = int(template.shape[0] * scale_percent / 100)
dim = (width, height)
template = cv2.resize(template , dsize = dim)
method = eval('cv2.TM_CCOEFF_NORMED')
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# template match
res = cv2.matchTemplate(gray,template,method)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(res)
# Draw box around the Max likelihood location of the template
top_left = max_loc
h,w =template.shape[:2]
bottom_right = (top_left[0] + w, top_left[1] + h)
cv2.rectangle(gray,top_left, bottom_right, (255,0,0), 2)
res = cv2.putText(res,'Likelihood Map from Template Matching', (50,50),cv2.FONT_HERSHEY_SIMPLEX, 0.9, (255,255,255), 2, cv2.LINE_AA)
cv2.rectangle(frame,top_left, bottom_right, (51,255,51), 2)
cv2.imshow("Color Video Feed - Box",frame)
cv2.imshow("Grayscale Video Feed - Box",gray)
cv2.imshow("Likelihood Map",res) # produces the correct result
res = cv2.resize(res,(frame_width,frame_height))
out.write(res)
# Press Q on keyboard to exit
if cv2.waitKey(25) & 0xFF == ord('q'):
break
# Break the loop
else:
break
# When everything done, release the video capture and writing object
cap.release()
out.release()
# Closes all the frames
cv2.destroyAllWindows()
最佳答案
以下内容可能有助于使用 opencv VideoWriter 将 H264 编码的视频保存到 mp4 文件中:
import cv2
#print(cv2.__version__)
# Uncommenting the following would allow checking if your opencv build has FFMPEG and GSTREAMER support
#print(cv2.getBuildInformation())
# Video source
cap = cv2.VideoCapture('videotestsrc ! videoconvert ! queue ! video/x-raw, format=BGR ! appsink drop=1', cv2.CAP_GSTREAMER)
# fps is a float value, width and height are integer values
fps = float(cap.get(cv2.CAP_PROP_FPS))
frame_width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
frame_height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
# Using FFMPEG backend: 4CC specifies codec, container is found from filename extension...here using mp4
output_video_file='test_H264.mp4'
fourcc = cv2.VideoWriter_fourcc(*'X264')
out = cv2.VideoWriter(output_video_file, cv2.CAP_FFMPEG, fourcc, fps, (frame_width, frame_height))
# Alternatively, using GSTREAMER backend:
#out = cv2.VideoWriter('appsrc ! queue ! video/x-raw,format=BGR ! videoconvert ! x264enc ! h264parse ! qtmux ! filesink location=test_H264.mp4', cv2.CAP_GSTREAMER, 0, fps, (frame_width, frame_height))
# With NVIDIA, you may use HW encoder:
#out = cv2.VideoWriter('appsrc ! queue ! video/x-raw,format=BGR ! videoconvert ! video/x-raw,format=BGRx ! nvvidconv ! video/x-raw(memory:NVMM),format=NV12 ! nvv4l2h264enc ! h264parse ! qtmux ! filesink location=test_H264.mp4', cv2.CAP_GSTREAMER, 0, fps, (frame_width, frame_height))
if not cap.isOpened():
print("Failed to open capture")
exit()
if not out.isOpened():
print("Failed to open writer")
exit()
while cap.isOpened():
ret, frame = cap.read()
out.write(frame)
cv2.imshow('Test', frame)
cv2.waitKey(1)
关于opencv - 使用来自 cv2.VideoWriter 的 write() 后的错误/空视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71563084/
第一次保存视频后,应用程序需要添加更多的帧。但是,如果视频文件存在,VideoWriter 对象将覆盖现有视频。我使用下面的代码编写视频(它是一个函数调用): videoWriter = Video
当我尝试使用 VideoWriter 编写帧时,它不起作用。我已经尝试了很多 FOURCC 代码,例如 defaul、h264、mjpg、divx、xvid 等。是的,我已经安装了具有所有必要配置的
这是我保存 web_cam 流的代码。它正在工作,但输出视频文件的问题。 import numpy as np import cv2 cap = cv2.VideoCapture(0) # Defin
我正在尝试使用如下所示的 Python 脚本从我的网络摄像头流式传输和保存视频,但出于某种原因,“myvideo.mp4”文件非常小,无法使用 QuickTime(或其他播放器)打开 -它似乎是空的。
我正在尝试测量输入视频文件中的某些事件:“test.mp4”。这是通过分几个步骤处理视频来完成的,其中每个步骤对视频数据执行一些操作并将中间结果写入新的视频文件。 输入视频的fps为:29.42346
我正在使用OpenCV 2.4.9和Visual C++2017。我正在编写视频,出于测试目的,尝试在完整的磁盘上编写框架。 我做了 try { video_writer << frame;
我正在构建一个脚本,以通过CSV文件将边框叠加到我的视频上。每个框架都有n个边界框,因此我只是遍历每个框架中的边界框并在该框架上绘制cv2.rectangle。结果,对于所有框架,我都会多次写入一个框
import numpy import cv2 import random image=cv2.imread(r"C:\Users\Sriram\Desktop/img.png") print(ima
我正在尝试使用 opencv videowriter api 从视频卡设备流式传输连续图像,下面是执行该操作的 opencv 代码片段,我的问题是我正在获取帧但没有在/var/中生成任何 index.
问题:我在正确渲染/播放由OpenCV的视频编写器创建的视频时遇到问题。 详细信息:Python不会吐出任何错误,而是可以成功播放/创建视频。当我尝试使用VLC播放视频时,似乎VLC尝试播放空视频(时
我是新手,开始在 ubuntu 10.4 上使用 OpenCV。我正在尝试从相机捕获视频并将该视频写入 avi 文件,代码如下: #include "opencv2/opencv.hpp" #incl
我要从视频采集卡中捕捉帧。这些帧被处理并写入硬盘。整个设置处于多线程环境中,因此抓取器将图像写入队列,在另一个线程中处理图像,另一个线程写入硬盘。如果图像符合处理器的定义,则图像将写入硬盘。如果连续
我正在尝试将网络摄像头的记录写入文件。为此,我使用以下代码。我一直得到 2 的退出代码。有人可以帮我找出问题所在吗?我以前使用过类似的函数调用,将一个视频文件的帧写入一个新文件,并且有效。无法理解这种
我是一名数学本科生,几乎没有编程经验。不过,我对计算机视觉很感兴趣。试图遵循 Learning OpenCV 这本书,但它有点过时了。如何将生成的视频文件保存在我的 linux 主目录中?例如“/ho
我正在研究视频的深度学习算法。给定一个视频片段,我想将我的结果保存在另一个视频中。为此,我在 Windows 上使用 OpenCV 和 Python。OpenCV 对我的视频预处理工作正常,可以训练我
以下代码无法打开 VideoWriter 对象: #include #include #include #include using namespace cv; using namespace
我正在编写一个程序来读取多个网络摄像头,将图片拼接在一起并将它们保存到视频文件中。 我应该使用线程来捕获图像并将生成的大图像写入文件吗? 如果是,我应该使用 c+11 还是 boost? 您是否有一些
我正在尝试从两张图片创建 1fps webm,代码: // path to output string outputVideoPath = "/home/gio/Desktop/gif
我对 OpenCV VideoWriter 有疑问。 目前我有 2 个项目:一个在 C# 中,一个在 C++ 中。 C# 项目会读取*.bmp 文件,创建位图列表,然后在C++ 项目中调用writeV
使用 OpenCV 2.4.8(预构建的二进制文件)运行 Windows 7、x64。 尝试以下基本代码: VideoWriter wrt; wrt.open("video.mp4", -1, 29
我是一名优秀的程序员,十分优秀!