Edge Detection Flashcards

1
Q

Gradient of an image

A

A measure of how an image is changing

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

Gradient magnitude

A

sqrt(Ix^2 + Iy^2)

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

Non maximum operation and its use in edge detection

A

An operation that finds the strongest point in a gradient i.e. the local maximum

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

What are the high and low thresholds for in Canny edge detection

A

The high threshold is for definite edges, if a pixel a local maximum and is above the high threshold, it is a definite edge.
The low threshold is for probable edges, it will only be included if it is a neighbor to a definite edge

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

Steps of Canny edge detection

A
  1. Gaussian filter
  2. Find intensity gradient in multiple directions
  3. Non maximum operation
  4. Double thresholding
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the Laplacian operator for

A

To find edges in a single convolution, it finds the zero crossings of the second derivative of the image

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

Laplacian kernel

A

[0 -1 0]
[-1 4 -1]
[0 -1 0]

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