0
1.1kviews
Perform the opening operation on the image shown. Use the structuring element Image is of size 10 x 10.
1 Answer
written 6.0 years ago by |
The image raw data is shown.
Opening is basically Erosion followed by Dilation.
Open = D (E(A))
A B = (A B) B
Step 1: Remember, Erosion is minimum
{A(x i, y j) × B (i, j)}
Eroding A with B, we get
We now dilating this image
The modified image looks like
Figure 42