Filter löschen
Filter löschen

Matrix dimensions must agree.error in t=r.*e;

1 Ansicht (letzte 30 Tage)
Praveen  kumar
Praveen kumar am 11 Mär. 2016
Kommentiert: Walter Roberson am 11 Mär. 2016
%Binarisation
e=im2bw(z);
figure,imshow(e);
title('binarized image');
r=im2bw(w);
t=r.*e;
figure,imshow(t);
k=bwmorph(~t,'thin','int');
figure,imshow(k);
title('morphological processed image');
  2 Kommentare
Praveen  kumar
Praveen kumar am 11 Mär. 2016
i am not knowing what to do.how to make the z and w the different sizw..?
Walter Roberson
Walter Roberson am 11 Mär. 2016
Your z and w are currently different sizes. As you appear to be using images, you should imresize() the larger image to match the size of the smaller image.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 11 Mär. 2016
We have no reason to expect, given the code you show, that z and w were originally the same size. If they are not, then it will not be possible to multiply their binary equivalents.

Weitere Antworten (0)

Kategorien

Mehr zu Denoising and Compression finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by