Post Your Answer
7 years ago in Research Methods By Priyanshu Rathore
Need help with SIFT
Hey guys I need help with SIFT. My research field is robotics. If possible please provide me with some research papers or reports which can help me with SIFT.
All Answers (3 Answers In All)
By Krishan Pancholi Answered 7 years ago
To detect the key points, the input image is convolved with Gaussians, SIFT then looks for local maximums. To generate the descriptors, SIFT calculates a histogram of oriented ingredients around each key point.
Reply to Krishan Pancholi
By Prithvi Patel Answered 7 years ago
Reply to Prithvi Patel
By Meghana R Answered 7 years ago
Constructing a scale space – This is the initial preparation. You create internal representations of the original image to ensure scale invariance. This is done by generating a “scale space”.
LoG Approximation – The Laplacian of Gaussian is great for finding interesting points in an image.
Finding keypoints – With the super fast approximation, we now try to find key points.
Get rid of bad key points – Edges and low contrast regions are bad keypoints. Eliminating these makes the algorithm efficient and robust.
Assigning an orientation to the keypoints – An orientation is calculated for each key point. Any further calculations are done relative to this orientation. This effectively cancels out the effect of orientation, making it rotation invariant.
Generate SIFT features – Finally, with scale and rotation invariance in place, one more representation is generated.
Reply to Meghana R
Related Questions