I need to identify and track one person in a video scene which may contain other objects/people.
Currently, using OpenCV, I can track all people in the frame. (my code is based on the OpenCV examples using Haar CascadeClassifiers)
I have few images of the person I want to track. My question is two fold:
- How can I identify the person I want to track in the frame?
- How can I track only this person in the frame and not others?
If I use some face tracking method, all people are identified and all faces are tracked. I do not want this to happen.
Somewhat related is this post for kinect. I want to use a web camera and OpenCV to be able to do this task.
Thanks, Akshay
PS: Pythonic solution will simplify my task, but any solution/direction towards a solution is also greatly appreciated :)