SIFT forecast

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

+7
source share
1 answer

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

You need to use SIFT to detect.

As soon as you find an object, you prepare a prediction step and update , for example, Kalman Filter .

+9
source

All Articles