demo
Credits: Using VL.OpenCVhttps://github.com/vvvv/VL.OpenCV
I recently used the PedestrianDetector and Tracker nodes in a project where the tracking data was used to control a moving head light direction (more on that in another post). Got asked to give an example patch, now that it's cleaned up might just as well provide it to the vvvvhole community :)
The input is VideoIn (webcam) by default but can be switched to a VideoFile source, this gets passed through the PedestrianDetector node, results filtered by optional masks and displayed. Tracker blob/s are floating around and looking for detections to track. The trackers are set up in such a way as not to jump around too much. Further details in the patch's comments. The main output is tracker positions in pixel and dx11 space.
You can create an arbitrary amount of floating tracker blobs (depends on how much concurrent tracking your CPU can handle).
When relevant, nodes are processed asynchronously.
There are some quirks but I assume you'd be changing quite a bit to fit some production use of yours.
Here's some inspiration for a possible use of this patch:
anonymous user login
~3d ago
~9d ago
~9d ago
~10d ago
~23d ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
~2mth ago
Wow, well done domj!
@domj thanks a lot for this, i,ll try it soon.