error using rgb2gray
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
IP student ;(
am 5 Mär. 2019
Kommentiert: IP student ;(
am 5 Mär. 2019
image is in png format.
my code:
C= imread(rgb2gray(I));
error:
Error using rgb2gray>parse_inputs (line 80)
MAP must be a m x 3 array.
Error in rgb2gray (line 52)
isRGB = parse_inputs(X);
Error in DroseyeSvm (line 6)
C=imread(rgb2gray(B));
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 5 Mär. 2019
C = rgb2gray( imread(FileNameGoesHere));
Or if you already have an image array in I then just
C = rgb2gray(I);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!