0
我正在嘗試使用AForge.net框架來獲得一個簡單的運動檢測程序。在AForge網站是這樣一個程序的例子,但它是相當含糊:如何將幀輸入運動檢測器對象AForge.net?
// create motion detector
MotionDetector detector = new MotionDetector(
new SimpleBackgroundModelingDetector(),
new MotionAreaHighlighting());
// continuously feed video frames to motion detector
while (...)
{
// process new video frame and check motion level
if (detector.ProcessFrame(videoFrame) > 0.02)
{
// ring alarm or do something else
}
}
我需要一些幫助,while循環的條件,因爲我找不到怎麼養活視頻幀的解決方案到MotionDetector對象中。
謝謝。
讓我知道如果你需要更多的援助。我剛剛完成了一個基於AForge的運動跟蹤器項目。 – Iridium237