Lecture 2 Digital Image Analysis And Processing Flashcards
What are the three major types of image processing?
- Local (each pixel will not interfere each other)
- contrast and brightness adjustment
- gamma correction
- histogram equalisation
- threshold - Neighbourhood
- spatial filtering’
- edge detection & enhancement
- entropy filtering - Global
- Fourier filtering
What are the formulas for local processing (brightness adjustment / contrast adjustment / gamma correction)
Brightness adjustment:
Output = input + K
(Add a same constant)
Contrast adjustment
Output = input * m
(Multiply a same constant: I.e. the difference between the pixel value also doubled)
Gamma correction
Output = (input)^r
What is a gray-scale histogram?
The histogram shows the distribution of pixel value
What is bin width in gray-scale histogram?
The pixel values are classified into intervals to form the histogram. Bin width can be manipulated.
What do window width and window level control?
The window allow the user to control the interval of gray levels to be displayed on the monitor in real time.
Level = centre of window
Width = range of window
Gray levels below min level : zero luminance
Gray levels above max of window: max luminance
Smaller window = increase display contrast
What is intensity based segmentation (eg. Lung segmentation)
- algorithmically define the lower and upper limits of pixel intensity of each objects
What are the limitation of intensity-based segmentation?
- assumed the intensity ranges of individual objects are disjoint (not many overlapping pixels)
- assumption of homogeneity (same structure have same CCT intensity value)
What is the basic idea in correlation filtering?
- Slide the centre of the correlation kern on the image
- Multiply each weight in the correlation kernel by the pixel in the image
- Sum these products and return the value to the central kernel
What is the problem relating to the size of a filtered image?
Filtered images are always smaller than the original
What method can solve the problem of reduction in size of correlation filtered images?
Assume boundary condition
(Make up boundaries number)
To make the filter image size = original image size
Name the filter
1 2 1
0 0 0
-1 -2 -1
Edge detection filter
With edge width = 2 pixel
Name the filter
1 1 1
1 1 1
1 1 1
Averaging filter
Result in blurry image
Name the filter
1 4 7 4 1
4 16 26 16 4
7 26 41 26 7
4 16 26 16 4
1 4 7 4 1
Gaussian filter
The domain of Gaussian function is __________
Infinitely large
But in practice it is nearly zero at more than about 3 D0 from the mean
Therefore the function can be reduced to a 5 x 5 matrix
Name the filter
1 0. 0 1
0 -1. -1 0
Robert cross filtering
The direction of zero detect the edge direction
Diagonal edge detection