Week4 SWIFT Flashcards

1
Q

Features are (partially) invariant to what?

A

Image scaling and rotation

Partially: change in illumination and 3D camera viewpoint

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

Why is high distinctive good?

A

Allows for single feature to be correctly matched in large database. Basis for object and scene recognition.

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

What are the major stages of computation in SIFT?

A
  1. Scale-space extrema detection
  2. keypoint localization
  3. orientation assignment
  4. keypoint descriptor
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Scale-space extrema detection

A

Searches all scales and image locations and identify points of interest that are invariant ot scale and orientation.

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

Keypoint localization

A

At each candidate location a model is fit to determine location and scale. Keypoints are selected by stability.

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

Orientation assignment

A

One or more orientations assigned to each keypoint based on local image gradient directions.

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

Keypoint descriptor

A

Local image gradients measured at scale in the region around each keypoint. These are transformed into a representation that can handle shape distortion and change in illumination.

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

Scale space

A

Focus verleggen binnen beeld. Bijv. focus op raam of op huis / boom. Met gaussian smoothing konden objecten netjes verborgen worden waar niet op gefocust werd.

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

Octave

A

Verdubbeling van schaal. Belangrijk om te kijken in hoe snelle stappen dat moet gaan.

We must produce s + 3 images in the stack of blurred images for each octave, so that final
extrema detection covers a complete octave.

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

the relationship between D and σ^2∇^2G

A

Heat diffusion equation.

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

ratio eigenvalues

A

-

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

trilinear interpolation

A

-

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

affine changes in illumination

A

-

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

Scale space maxima

A

Maxima of scale normalizef Gaussian derivatives at different scales.

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

LoG DoG extremen

A

Laplacian of Gauss (convolutions)

Lowe gebruikt Difference of Gauss

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

Least Squares werkt slecht bij outliers, oplossing?

A

Estimation methods that are robust to outliers

17
Q

RANSAC

A

Random Sample Consensus

  • classify points as inliners or outliners
  • fit model to inliners disregarding outliners
18
Q

SIFT stappenplan Rein

A
1. Keypoint in f en f' 
sift(x, y, theta, s, d)
Waarbij:
x,y = position
theta = orientatie
s = scale
d = discriptor 
  1. Matching van descriptor

False match: punten die wel op elkaar lijken maar niet in een overlappend beeld zitten.