Lecture 2 Digital Image Analysis And Processing Flashcards

1
Q

What are the three major types of image processing?

A
  1. Local (each pixel will not interfere each other)
    - contrast and brightness adjustment
    - gamma correction
    - histogram equalisation
    - threshold
  2. Neighbourhood
    - spatial filtering’
    - edge detection & enhancement
    - entropy filtering
  3. Global
    - Fourier filtering
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the formulas for local processing (brightness adjustment / contrast adjustment / gamma correction)

A

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

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

What is a gray-scale histogram?

A

The histogram shows the distribution of pixel value

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

What is bin width in gray-scale histogram?

A

The pixel values are classified into intervals to form the histogram. Bin width can be manipulated.

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

What do window width and window level control?

A

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

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

What is intensity based segmentation (eg. Lung segmentation)

A
  • algorithmically define the lower and upper limits of pixel intensity of each objects
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the limitation of intensity-based segmentation?

A
  • assumed the intensity ranges of individual objects are disjoint (not many overlapping pixels)
  • assumption of homogeneity (same structure have same CCT intensity value)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the basic idea in correlation filtering?

A
  1. Slide the centre of the correlation kern on the image
  2. Multiply each weight in the correlation kernel by the pixel in the image
  3. Sum these products and return the value to the central kernel
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the problem relating to the size of a filtered image?

A

Filtered images are always smaller than the original

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

What method can solve the problem of reduction in size of correlation filtered images?

A

Assume boundary condition
(Make up boundaries number)
To make the filter image size = original image size

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

Name the filter
1 2 1
0 0 0
-1 -2 -1

A

Edge detection filter
With edge width = 2 pixel

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

Name the filter
1 1 1
1 1 1
1 1 1

A

Averaging filter
Result in blurry image

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

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

A

Gaussian filter

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

The domain of Gaussian function is __________

A

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

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

Name the filter
1 0. 0 1
0 -1. -1 0

A

Robert cross filtering

The direction of zero detect the edge direction
Diagonal edge detection

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

Name the filter
1 2 1
0. 0. 0
-1 -2 -1

A

Sobel filtering which detects horizontal edges

17
Q

What is edge based segmentation?

A

It is an edge filtering technique that detect the border of a region and formed closed curves.

There is no assumption of homogeneity of the region, only the change in pixel values along the edges matters

18
Q

What are the limitation of edge-based segmentation?

A
  • obtained edges are usually disconnected
  • more sensitive to noise
19
Q

Name 1 non-linear spatial filter

A

Median filter