Chapter 4 Flashcards

1
Q

What is point processing?

A

Calculates value of pixel in output image based on the same posiotioned pixel in the original image. (f(x,y) - g(x,y))

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

What is grey level mapping?

A

Output pixel is equal to input pixel plus a constant (g(x,y) = f(x,y) + b)

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

What is grey level contrast?

A

difference in pixel values

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

How to change grey level contrast?

A

g(x,y) = a * f(x,y)

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

How to combine brightness and contrast adjustment:

A

G(x,y) = a*f(x,y) + b - this is a straight line.

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

How to perform an optimal brightness and contrast change

A

see notes

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

What can we use a image histogram for?

A

Investigating the gray-level/colour ranges expressed in the picture.

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

What is histogram stretching?

A

Making sure that an image histogram ranges from 0 to 255 (grey level) done by:

g(x,y) = 255/(f_high - f_low) * (f(x,y)-f_low)

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

Problems with histogram stretching?

A

Vulnerable to outliers - histogram equalization can be done instead.

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

What is gamma-mapping?

A

g(x,y) = f(x,y) ^ gamma - more dynamic in certain regions

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

What is log mapping?

A

g(x,y) = c*log(1+f(x,y))

c =255/Log(1+f_max)

Good for enhancing low pixel values.

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

What is thresholding?

A

Everything on either side of a threshold either dark or light.

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

Prerequisites for thresholding:

A

Bimodal histogram

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

Otzu’s method:

A

does automatic thresholding into 2 classes by minimizing combined class variance.

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