USECASE Question:
Suppose you want to remove all the circuit lines from the original circuit image, leaving only the rectangular outlines of microchips.
Prerequisite:
Prerequisite:
https://www.mathworks.com/help/images...
Image Erosion | MATLAB (with Animation)
• Image Erosion | MATLAB (with Animation)
Dilate image using imdilate:
https://www.mathworks.com/help/images...
Code:
%%
%Reading the Image
clc
clear all
close all
I=imread('circbw.tif');
imshow(I);
%%
%Structural Element
SE = ones(30,30);
B=imerode(I,SE);
%%
%Plotting the Images
subplot(1,2,1);
imshow(I);
title('Original Image');
subplot(1,2,2);
BW3 =imdilate(B,SE);
imshow(BW3)
title('Detecting Rectangles');
#ImageProcessing #DIP #DSP
On this page of the site you can watch the video online Dilation(Complete Code & Explanation) | Image Processing | MATLAB with a duration of hours minute second in good quality, which was uploaded by the user Knowledge Amplifier 13 June 2020, share the link with friends and acquaintances, this video has already been watched 2,634 times on youtube and it was liked by 16 viewers. Enjoy your viewing!