* DIP L4 - Image Enhancement 1 Flashcards

1
Q

What is the difference between point and local operations? (Specific)

A

Point operations act on a single pixel at a time. Local operations act on a whole group at a time. Further, point operations do not depend on neighbours whereas local operations does. Point operations is usually for contrast/brightness/colour enhancement whereas local operations is for spatial resolution; smooth/sharp/reduce noise.

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

What is the filter that reduces noise in an image called? How would you remember this?

A

MEDIAN FILTER - Median because it takes the neighbouring values and makes everything AVERAGED out; averages out the noise

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

What is clipping?

A

Clipping is like when you do an operation on an image and the pixel values change and become above or below the limit for that particular bit depth image. You have to ‘clip’ the value to the extremities

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

What is rounding error?

A

Operation on the image results in pixel values that may not be a whole value - have to round it up or down. Is subjective

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

Point operations: T or F: the new image O(x,y) will be the same size, rows and columns, and have the same bit depth, as the original image I(x,y)

A

T

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

How many look up tables do we have associated with an image?

A

Two - one for storage, one for viewing

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

What is the difference between grey scale monitors and colour monitors? Also explain using grey and colour images w/their approriate displays

A

Grey has 1 LUT, colour has 3 LUT –> Grey scale only has ONE value for all RBG ‘gun’, whereas colour has 3 diff values for each of RBG ‘gun’. Grey has 1 value to go to 1 LUT. Colour images have 3 values going to their corresponding LUTs

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

Describe pseudo-colour display

A

There is only 1 value but using 3 LUT’s (colour display). The guns are not equal value, therefore colour is shown!

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

LUT - How to change brightness of an image?

A

Addition/subtraction

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

LUT - How to change contrast of an image?

A

Multiplication/divison

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

Histogram - How to increase brightness?

A

Shift right - closer to 255 (8bit)

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

Histogram - How to decrease brightness?

A

Shift left- closer to 0

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

If you increase the slope/gradient of the LUT, would contrast increase or decrease?

A

Increase - the values are further away from each other, so more black/white on the image; contrast higher

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

If you increase the slope/gradient of the LUT, would brightness increase or decrease?

A

Increase - more white because values further away from each other

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

Describe each Boolean operation:

A

AND, OR, NOT, XOR

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

What does XOR in Boolean stand for?

A

eXclusive OR - Exactly like OR except when both is on, then it is 0

17
Q

What is local operations primarily used for?

A

To change SPATIAL RESOLUTION - sharp, smooth, reduce noise

18
Q

Where is the new pixel value stored for Local operations?

A

In the middle of all the pixel values operated on for that particular operation

19
Q

T or F: High pass filters allow high freq to pass and stops low freq

A

FALSE - High pass filters also allow low freqs to pass (just less of them)

20
Q

T or F: Low pass filters pass over low frequency areas and work on high frequency areas

A

True ! They work on high freq areas to blur them

21
Q

What is the main function of low and high pass filters?

A

Low pass blurs images, high pass enhances the edges

22
Q

Size of low freq filter matrix increases - would this increase or decrease blurring?

A

INCREASE

23
Q

Low pass follow Gaussian…

A

True

24
Q

What is a median filter?

A

They REDISTRIBUTE noise - does NOT reduce it!!! Non-linear filter

25
Q

Are median filters linear or non-linear?

A

Non-linear: they produce different values using different operations for each pixel value

26
Q

Are median filters low or high pass?

A

They are low pass filters, even though they multiply pixel values by non-linear way

27
Q

Does a median filter smooth the image?

A

NO - it just averages the values

28
Q

What do high pass filters predominantly do?

A

They detect edges/sharpen them

29
Q

What is the difference between high pass filter of 0 and 1

A

0 gets rid of the LOW FREQ; background info!!!

30
Q

Median filter is a linear filter for sharpening, a type of local operator

A

NO, it is a non-linear filter, removes noise, and is a point operator

31
Q

Where are S-shaped LUT found? (What imaging modality)?

A

DR/CR radiography

32
Q

Which operation requires filters/masks?

A

LOCAL. Point is LUT!!!