如何为视频序列编写背景减法算法? [英] how to write background subtraction algorithm for video sequences?

查看:73
本文介绍了如何为视频序列编写背景减法算法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hai,

如何对输入视频的背景进行演习...?

Vibe-视觉背景提取.

我需要检测运动物体并减去输入视频中非运动物体的背景



如果我提供一个输入作为视频文件,则意味着如何从该视频中减去背景...?

hai,

how to subract the background of a input video...?

Vibe- Visual Background Extraction.

i need to detect the moving objects and subtract the background of non-moving objects in the input video



if i give one input as a video file means how to subtract the background from that video...?

推荐答案

在ASP.net中很难做到,但是这里提供了一些链接,这可能对您有帮助
经历它

http://www.youtube.com/watch?v=bap17zSjmsg [ http://kossovsky.net/index.php/2009/07/aforge-net -image-processing/ [ ^ ]

在C ++,C中,仅用于理解.
使用简约方法进行实时视频图像处理/帧采集器 [ ^ ]
http://www.devsource.com/c/a/Languages/Image-Processing -in-C/ [ ^ ]

谢谢
--RA
This is Very Difficult to do in ASP.net , But here am giving some links, this may helps you
go through it

http://www.youtube.com/watch?v=bap17zSjmsg[^]
http://kossovsky.net/index.php/2009/07/aforge-net-image-processing/[^]

In C++,C, Just for understanding.
Real-time video image processing / frame grabber using a minimalistic approach[^]
http://www.devsource.com/c/a/Languages/Image-Processing-in-C/[^]

Thanks
--RA


您可以在C#中为视频应用编写后台进程,如

You can write background process for video application in C# as

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "MyVideoApp.exe";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
Process process = new Process();
process.StartInfo = startInfo;
process.Start();


这篇关于如何为视频序列编写背景减法算法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆