feature_based_matching_flashcards

(20 cards)

1
Q

What is a key challenge in feature-based matching?

A

Finding correspondences when they are not known in advance.

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

What is a keypoint in image processing?

A

An image location where a feature descriptor is computed.

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

What does a feature descriptor do?

A

Summarises the local image structure around a keypoint.

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

What are the advantages of local features?

A

Locality, distinctiveness, quantity, efficiency, and extensibility.

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

What is the Förstner-Operator used for?

A

Identifying locally distinct points that can be well localised.

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

What is the purpose of the Harris Detector?

A

To find corners by measuring intensity changes in all directions.

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

What do the eigenvalues λ1 and λ2 represent in the Harris Detector?

A

They represent intensity changes in orthogonal directions; both large indicates a corner.

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

What is the corner response function R?

A

A computed value that indicates how ‘corner-like’ a pixel is.

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

How does the Harris Detector select final keypoints?

A

By thresholding R and taking local maxima.

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

What is the simplest feature descriptor?

A

A 3x3 window around the keypoint.

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

What are examples of advanced descriptors?

A

SIFT, SURF, HOG, GLOH.

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

How does the SIFT descriptor work?

A

It uses gradients in a 16x16 region to build 128D orientation histograms.

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

What is the basic idea of feature matching?

A

Compare descriptors across images and find the one with minimum distance.

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

What is SSD in feature matching?

A

Sum of squared differences between descriptor entries.

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

Why is choosing a good threshold important in feature matching?

A

To maximise true positives and minimise false positives.

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

What is the correspondence problem?

A

Incorrect matches due to ambiguous descriptors or noise.

17
Q

What is the goal of RANSAC?

A

To robustly fit a model by separating inliers from outliers.

18
Q

What are the steps of the RANSAC algorithm?

A

Sample data, compute model, count inliers, repeat until best model is found.

19
Q

What does feature-based alignment involve?

A

Extracting features, computing matches, hypothesising and verifying transformations.

20
Q

Why is RANSAC essential in feature-based matching?

A

It provides a way to estimate models despite many incorrect matches.