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