Is it possible to combine two tracking algorithms namely HoG and AdaBoost?
Or are there any video tracking algorithms which can be combined? I'm trying to develop an algorithm by combining these two. Is it possible? Also I'm trying to implement it using OpenCV.
HoG is a feature(descriptor) extraction method, and Adaboost is a machine learning algorithm to detect (not track) object.
So, you can train the machine to detect the object by it's HoG descriptor using adaboost algorithm, then detect.
In a word, HoG + Adaboost is for detection, not tracking.
You can use particle filter, LK tracker or etc, for tracking.