How can I detect direction and number of objects using Emgu?

Objects are moving in all directions (2D); and a camera is seeing these objects (on a 2D surface). Object may have little differences in shape but are similar enough.

Thanks

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
  1. Invoke cvAbsDiff on successive frames (may be on each n-th and (n - gap)-th frame) to detect changes and use thresholding in order to get a changes mask
  2. For each frame call cvUpdateMotionHistory and pass obtained mask as an argument
  3. To get motion segments (objects) and their orientation:
    1. call cvCalcMotionGradient passing motion history accumulated by previous calls
    2. Split motion into segments by cvSegmentMotion and for each segment calculate angle using cvCalcGlobalOrientation

Similar steps are coded in motempl.c example distributed within OpenCV library.

Update

I thought that they've implemented almost complete OpenCV binding and differencies in interface are the result of adding OOP. For instance here is an AbsDiff method. However motion related stuff has different structure. Use MotionInfo method to get motion angle as in this example (which I found with google search).

link|improve this answer
Would you please describe it using EmguCV. I do not know C and EmguCV is different than OpenCV. And sinece I am developing in C# I need EmguCV - as a .NET wrapper aroung OpenCV. But EmguCV has different classes and methods than you have named :( – Kaveh Shahbazian May 23 '11 at 9:39
I've updated the answer. See MotionHistory class – Andrey May 23 '11 at 10:32
Thank you very much – Kaveh Shahbazian May 23 '11 at 10:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.