Image processing Flashcards

1
Q

What is a digital image

A

Discrete, sampled and quantified representation of a continues visual signal.

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

What can pixel transforms be used for

A

Changing brightness/ contrast

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

Name a non-linear filter and its uses

A

Median filter often used to remove salt/pepper noise.

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

What does the convolution theorem state?

A

The Fourier transform of a convolution is the same as the product of their Fourier transforms.

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

Name some edge detector filters/methods

A

Sobel, LoG, DoG, canny

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

What applications do image pyramides have?

A
Template matching
Detection of stable points of interest
Image registration
Image blending
Compression
...
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How is the Laplace pyramid created

A
  1. Create the Gaussian pyramid
  2. For each layer, rescale the next layer from the gaussian pyramid
  3. Subtract the images and store the result in the Laplace pyramid
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the formula for collapsing a Laplace pyramid with

3 levels

A

Rescale(Rescale(L3) + L2) + L1

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

How can we approximate the LoG filter

A

With a DoG filter

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

Name two highpass filters

A

LoG, DoG, Sobel, prewitt

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

Name two lowpass filters

A

Average, Gaussian Filter

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

What is a morphological opening?

A

An erosion followed by a dilation.

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

What morphological operations exist?

A
  • Dilation
  • Erosion
  • Opening
  • Closing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is aliasing and how do you avoid it?

A

Sampling at lower rate than two times the highest frequency in the image. Lowpass filter to remove higher frequencies.

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

Mention some interpolation techniques

A
  • Nearest neighbour
  • Bilinear interpolation
  • Cubic interpolation
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is template matching?

A

Trying to match one image with another through some metric measurement. I.e face recognition, have image of persons face, try to match it with for example a class photo which has several faces.