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
Sur cette page du site, vous pouvez voir la vidéo en ligne Dilation(Complete Code & Explanation) | Image Processing | MATLAB durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Knowledge Amplifier 13 juin 2020, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 2,634 fois et il a aimé 16 téléspectateurs. Bon visionnage!