0
1.9kviews
Given 7X7 image segment. Perform dilation using the structuring element shown:

enter image description here

1 Answer
0
131views

For dilation, we use the formula

E(x,y) = Maximum{A(x – i, y – j ) x B(i , j)}

0 ≤ i ≤ m - 1

0 ≤ j ≤ n - 1

Here we multiply the mask coefficients with the image values and choose the minimum value.

We place …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.