andrewssobral / vehicle_detection_haarcascades

Vehicle Detection by Haar Cascades with OpenCV
533 stars 521 forks source link

identifying individual object #3

Closed nisarg09 closed 7 years ago

nisarg09 commented 8 years ago

Hi.. I have implemented the same and getting results as you have shown. The issue here is I need to identify each individual object in each sequence of frame in video(input source). Can you tell me please how to identify/track particular object in consecutive frames from the list of rectangles from given output?

andrewssobral commented 7 years ago

Hi @nisarg09 sorry for my late response.

For object tracking you can use a:

For object recognition (e.g. type of the vehicle: car,bus,truck,etc) you will need to build your own classifier. There are several ways to do this, some of them are:

However, for both options 2 and 3, you will need to build your own image dataset (with hundreds of images) for training, validation and test.