I am working on an augment reality game, which need to recognize and track a fast moving object. I have tried the following Image processing libraries,
1. Opencv
2. BoofCv
3. FastCv
I have tried TLD algorithm to track the object, tracking was successful but the performance was really needed to be improved. If the object is moving faster the result takes time, because of the processing time taken by the algorithms. I have also tried circulant,mean-shift like algorithms with boofcv.
Check these demos :
Object tracking in these two demos seems to be good but the calculation takes time.
Can i go with the following scenario to do this faster,
Extract the r,g,b matrix of object to be tracked
Take camera frames and convert it into a r,g,b matrix and search the tracked object matrix with in the camera frame.
Is there is any better way to do this ??