Interest Points and corners Flashcards

1
Q

What are some applications of using Interest points and keypoint matching?

A
  • Alignment
  • Recognition
  • Reconstruction
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the fundamental matrix of an image?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Describe the steps of keypoint matching.

A
  • Find a set of keypoints
  • Define a region around each point
  • Compute local descriptor
  • Match local descriptors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are local features?

A

Features in certain points/regions of the image. They should be salient, repeatable and effective in use.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does corner detection work?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Explain Harris corner detection and its method.

A

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 well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How does corner detection respond to different image changes?

A

Works with translation (moving the object in the scene) and rotation. Does nOT work with scaling.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly