I am working on a game with an addition to reality, which should recognize and track a fast-moving object. I tried the following image processing libraries,
1. OpenCV
2. BoofCv
3. FastCv
I tried the TLD algorithm for object tracking, tracking was successful, but performance was really needed for improvement. If an object moves faster, the result takes time due to the processing time of the algorithms. I also tried circulating, smoothing like algorithms using boofcv.
Check out these demos:
OpenTLD using FastCv
Boofcv Demo
Tracking objects in these two sample files seems good, but the calculation takes time.
Can I go with the following script to make it faster
Extract matrix r, g, b of object to track
Take the camera frames and convert them to the matrix r, g, b and find the matrix of tracked objects in the camera frame.
Is there a better way to do this?
android image-processing opencv augmented-reality object-recognition
Sujith
source share