I m working on small image processing assignment where I need to track 4 red color object. I got how to track single one. I want to know what is the best approach to track m
Here are the steps for multiple colored object tracking:
For each frame do the following steps:
This is the basis of the algorithm. Then you have to handle situations, when blobs enter the image (this is the case when there is a blob in the current frame, but no close blob from the previous frame) or leave the image (there is a blob in the previous frame, but no close blob in the current frame).