Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SIFT prediction

I am using the SIFT implementation of Andrea Vedaldi, to calculate the sift descriptors of two images. But I would like to know if it is possible to predict where the object will be in next image, using SIFT descriptors.

like image 294
user1073039 Avatar asked Jan 25 '12 09:01

user1073039


1 Answers

Yes it is possible, but SIFT descriptors are just one part of the method and not very related to prediction, but to detection.

You need to use SIFT for detection.

Once you detect the object, you preform the prediction step and update step with, for example, Kalman Filter.

like image 74
Jav_Rock Avatar answered Nov 16 '22 09:11

Jav_Rock