while processing a code for Image enhnacement..i am getting the following error could you please explain..?
Mostrar comentarios más antiguos
*Error using rgb2gray>parse_inputs (line 88) RGB must be a m x n x 3 array.
Error in rgb2gray (line 35) X = parse_inputs(varargin{:});*
1 comentario
Rajat
el 10 de Abr. de 2013
Respuestas (2)
Iman Ansari
el 10 de Abr. de 2013
Editada: Iman Ansari
el 10 de Abr. de 2013
0 votos
The error says why. Your input is not RGB. Try:
size('your input')
Image Analyst
el 10 de Abr. de 2013
After you call this line
im1 = imread('D:\12.jp2');
put these lines
[rows, columns, numberOfColorChannels] = size(im1) % No semicolon
if numberOfColorChannels > 1
% Do this only if you want to convert to gray level.
im1 = rgb2gray(im1);
% Optionally, can take the green channel instead of the above line
% im1 = im1(:, :, 2);
end
What does this print out in the command window?
6 comentarios
Rajat
el 10 de Abr. de 2013
Image Analyst
el 10 de Abr. de 2013
I'm not Imran, but I looked at it too. It ran (with the peppers.png demo image). Does it do what you told it to? Does it do what you expected it to?
Rajat
el 10 de Abr. de 2013
Image Analyst
el 10 de Abr. de 2013
But your code does not (yet) take into account the suggestions that I've already given you. Why not? Why do you want other methods when you aren't even trying the one I already gave?
Joe Torr
el 8 de Feb. de 2015
I tried your step and it gave me the same error. I wonder if it's the fact that my image is .tiff have something to do with it. I'm just trying a basic step of getting only black and white colors. I started to try gray but that did'nt work as well.
Image Analyst
el 8 de Feb. de 2015
Joe, I don't know what you did. Post your own question separately, and attach your code and image and we'll answer it there.
Categorías
Más información sobre Images en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!