Matrix dimensions must agree.error in t=r.*e;
Mostra commenti meno recenti
%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 Commenti
Praveen kumar
il 11 Mar 2016
Walter Roberson
il 11 Mar 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.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Image Category Classification in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!