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
In questa pagina del sito puoi guardare il video online Dilation(Complete Code & Explanation) | Image Processing | MATLAB della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Knowledge Amplifier 13 giugno 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 2,634 volte e gli è piaciuto 16 spettatori. Buona visione!