Interest Points and corners Flashcards
What are some applications of using Interest points and keypoint matching?
- Alignment
- Recognition
- Reconstruction
What is the fundamental matrix of an image?
Its the “standard” form of the image. Like when you are looking straight ahead on a face, it has a fundamental matrix. From other angles it looks different, but it is still the same face with the same fundamental matrix.q
Describe the steps of keypoint matching.
- Find a set of keypoints
- Define a region around each point
- Compute local descriptor
- Match local descriptors
What are local features?
Features in certain points/regions of the image. They should be salient, repeatable and effective in use.
How does corner detection work?
If you shift a window IN ANY DIRECTION, it should give a large change in the intensity. So we can use that to find these points.
Explain Harris corner detection and its method.
You compute a M matrix for each image window which gives you its score. Then you find the surrounding points where the window gets a large response. Lastly you perform non-max suppression to remove bad detections.
How does corner detection respond to different image changes?
Works with translation (moving the object in the scene) and rotation. Does nOT work with scaling.