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

问题描述

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...?

推荐答案


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


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

09-21 00:37