将图片与视频合并
我想加载图像,然后将该图像与实时视频帧合并。我怎样才能用 OpenCV 做到这一点?我更喜欢使用 Python,但也对其他语言持开放态度。
到目前为止我的代码是(帧是视频捕获):
resim = LoadImage('angel.jpg',1)
SetImageROI(frame, (10, 10, resim.width,resim.height))
Add(frame,resim, frame, None)
ResetImageROI(frame)
但是,这给出了错误
src1.size() == src2.size() && src1.type() == src2.type() && func != 0
I want to load an image then merge that image with realtime video frame. How can I do this with OpenCV? I would prefer to use Python, but am open to other languages.
My code so far is (frame is video capture):
resim = LoadImage('angel.jpg',1)
SetImageROI(frame, (10, 10, resim.width,resim.height))
Add(frame,resim, frame, None)
ResetImageROI(frame)
However, this gives the error
src1.size() == src2.size() && src1.type() == src2.type() && func != 0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试以下代码。更改视频和图像文件:
Try following code. Change video and image file: