* DIP L4 - Image Enhancement 1 Flashcards
What is the difference between point and local operations? (Specific)
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.
What is the filter that reduces noise in an image called? How would you remember this?
MEDIAN FILTER - Median because it takes the neighbouring values and makes everything AVERAGED out; averages out the noise
What is clipping?
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
What is rounding error?
Operation on the image results in pixel values that may not be a whole value - have to round it up or down. Is subjective
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)
T
How many look up tables do we have associated with an image?
Two - one for storage, one for viewing
What is the difference between grey scale monitors and colour monitors? Also explain using grey and colour images w/their approriate displays
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
Describe pseudo-colour display
There is only 1 value but using 3 LUT’s (colour display). The guns are not equal value, therefore colour is shown!
LUT - How to change brightness of an image?
Addition/subtraction
LUT - How to change contrast of an image?
Multiplication/divison
Histogram - How to increase brightness?
Shift right - closer to 255 (8bit)
Histogram - How to decrease brightness?
Shift left- closer to 0
If you increase the slope/gradient of the LUT, would contrast increase or decrease?
Increase - the values are further away from each other, so more black/white on the image; contrast higher
If you increase the slope/gradient of the LUT, would brightness increase or decrease?
Increase - more white because values further away from each other
Describe each Boolean operation:
AND, OR, NOT, XOR