Ask Your Question

arjo129's profile - activity

2015-10-28 01:26:32 -0600 answered a question OpenCV + Python | Multiple object tracking

I'd use FAST/FREAK for extracting key points with descriptors (if realtime isn't required one could use SIFT/SURF) on the original image. This way one can label objects. Theres a video over here about it. https://www.youtube.com/watch?v=L7jbc...

2015-10-28 01:13:16 -0600 answered a question Detect flying hornets

One can use background subtraction if your camera is stationary. Subsequently one can count blobs. For background subtraction take a look at this: http://docs.opencv.org/trunk/d1/dc5/t...

Binarize the image, then detect and count blobs. You might need to track the hornets and add extra logic to determine if its the same hornet in order to extract the count.