我正在创建一个如下所示的MotionDetector,但是它没有检测到有动作的短测试视频上的动作(我从处理器获得非常小的运动级别)。 AForge的文档很粗略,很少有例子。关于为什么没有非常有效地检测到这一点,有什么令人眼花缭乱的明显吗?
detector = new AForge.Vision.Motion.SimpleBackgroundModelingDetector()
{
DifferenceThreshold = 25,
KeepObjectsEdges = true,
MillisecondsPerBackgroundUpdate = 1000,
SuppressNoise = true
};
processor = new AForge.Vision.Motion.BlobCountingObjectsProcessing()
{
HighlightMotionRegions = false,
MinObjectsHeight = 1,
MinObjectsWidth = 1
};
_motionDetector = new AForge.Vision.Motion.MotionDetector(detector, processor);