Lecture 3 Flashcards
Translation
object is moved down
Reflection
(-1,1) (0,1) to (1,-1)(0,-1)
Complement
All 1s become 0s and all 0s become 1s
Union
Two objects merged together
Intersection
the overlap of two objects
Difference
the two images subtracted
Cardinality
The number of elements in a set
Set operations
Given two sets, how they can be transformed
Binary morphological operations
Applies to binary images: pixels either black or white
Dilation
Binary operation
Make the image wider
I + S = {x|Sx^r intersection I=o}
The set of points for which the intersection of the image I with the refected version of structuring element S translated x is not empty
All pixels that dont have all neighbors will get one
Erosion
Binary operation
Removal of edges: All neighboring pixels on the borders are deleted. I-S={x|SxI}
That is, the set of points for which the structuring element S translated over x is completely contained in the image I
Opening
Binary operation
I*S=(I-S)+S
An erosion followed by a dilation using the same structuring element.
Eliminates details smaller than the structering element outside the main object
Closing
Binary operation
I*S=(I+S)-S
Dilation followed by erosion using same structuring element.
Eliminates details smaller than the structuring element inside the main object
Structuring elements
Can have any shape but the symmetrical 3x2 shape is used most. They can be decomposed
Decomposition
Iterative decomposition such that you can calculate it easier