dilation code does not work

%dilation code
close all;
clear all;
clc;
A=imread( 'fingerprint.tif' );
%Structuring element
b = [0 1 0; 1 1 1; 0 1 0];
C=padarray(A,[0 3]);
D=false(size(A));
for i=1:size(C,1)
for j=1:size(C,2)-6
D(i,j)=sum(B&C(i,j:j+6));
end
end
figure(1),imshow(D);title('dilation');

9 Kommentare

Rik
Rik am 8 Nov. 2019
You aren't using your structuring element. Is that on purpose? And do you need it to be a loop?
aslan memo
aslan memo am 8 Nov. 2019
Ihave error this step D(i,j)=sum(B&C(i,j:j+6));
darova
darova am 8 Nov. 2019
What is wrong with it?
aslan memo
aslan memo am 8 Nov. 2019
aa.PNG
KALYAN ACHARJYA
KALYAN ACHARJYA am 8 Nov. 2019
Bearbeitet: KALYAN ACHARJYA am 8 Nov. 2019
What is "B" here?
You are trying to "&" operation on two different sizes matrices???
here
b & C(i,j:j+6)
aslan memo
aslan memo am 8 Nov. 2019
b ıs the Structuring element
Rik
Rik am 8 Nov. 2019
No, b is your structuring element, B doesn't exist. And you haven't explained if you need a loop or not.
aslan memo
aslan memo am 25 Dez. 2019
thankyu @rik @kalyan im solved
Image Analyst
Image Analyst am 25 Dez. 2019
Why not simply use imdilate()?

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 8 Nov. 2019

Kommentiert:

am 25 Dez. 2019

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by