Chapter 5 Flashcards

1
Q

What is neighbourhood processing?

A

To calculate an output pixel value, the input pixel and it’s neighbours are used.

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

Name important neighbourhood rank filters:

A

1) the median filter
2) the minimum filter
3) the maximum filter
4) difference between min and max

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

What is correlation?

A

A type of filter (in this case called a kernel) that is applied to every pixel, and the kernel has weights.

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

What is a gaussian kernel?

A

A kernel with weights derived from gaussian distribution - most weight on the pixels close to the center.

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

What is template matching?

A

An application of correlation. The kernel defines an object we are looking for - called a template. Each pixel in the new picture has a value that corresponds to how well the original picture mathes the template. One problem is that it tends to create bias for bright areas.

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

How is template matching bright spot problems circumvented?

A

By normalization. Think of the template and image patch as represented by vectors in n (number of pixels in template) dimensional space. This can be normalized (see notes)

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

What is the normalized cross correlation?

A

NCC = correlation / ( length template * length image patch)

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

What is a picture gradient?

A

The change in pixel values between pixels - one in the x-x direction and one in the x-y direction. These together spand the gradient plane.

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

How to calculate picture gradients:

A

By applying filters:

1) prewitt (-1,-1,-1,0,0,0,1,1,1) either horizontal or vertical.
2) sobel (-1,-2,-1,0,0,0,1,2,1)

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