error: assignment dimension mismatch
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mohamad mohamad
am 15 Mär. 2014
Bearbeitet: mohamad mohamad
am 15 Mär. 2014
I=imread('data (15).tif'); % Read an image
IG = rgb2gray(I);
[M,N] = size(IG);
G(:,:,2) = I(:,:,2);
G(:,:,1) = 0;
G(:,:,3) = 0;
Y = rgb2gray(G);
i have a image data base and when i run this code on my images,it work well on all of them except 2 of them which are horizontal images and biger then others,can any one help me plz? this is the error :
Subscripted assignment dimension mismatch.
Error in main (line 13) G(:,:,2) = I(:,:,2);
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 15 Mär. 2014
Try
clear G
G(:,:,2) = I(:,:,2);
G(:,:,1) = 0;
G(:,:,3) = 0;
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graph and Network Algorithms 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!