morphological image processing Flashcards

1
Q

Explain the morphological operation of erosion and describe their use in image processing.

A

The erosion of A (image) by set B (structuring element) is defined as A ⊖ B = {x|(x + b) ∈ A for every b ∈ B}
The structuring element B is positioned with its origin at a location in the image and the new pixel value at that location determined as:
- 1 (on) if B fits A
- 0 otherwise

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

Explain the morphological operation of dilation and describe their use in image processing.

A

The dilation of A (image) by set B (structuring element) is defined as
A ⊕ B = {x|x=a+b for some a ∈A and b∈B}
The structuring element B is positioned with its origin at a location in the image and the new pixel value at that location determined as:
- 1 (on) if B hits A
- 0 otherwise

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

Explain morphological opening.

A

Morphological opening combines erosion and dilation (compound operator).
Opening is equivalent to erosion followed by dilation with the same structuring element.
A ∘ B = (A⊖B) ⊕ B.
There is morphological shrinking followed by morphological expansion.

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

Explain morphological closing.

A

Morphological closing combines dilation and erosion (compound operator).
Opening is equivalent to dilation followed by erosion with the same structuring element.
A • B =(A⊕B)⊖B.
There is a morphological expansion followed by morphological shrinking.

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

Closing is not the inverse of…

A

Opening

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

Opening is not the inverse of…

A

Closing.

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