フィルターのクリア

error while using rgb2gray

1 回表示 (過去 30 日間)
matlab_image
matlab_image 2012 年 7 月 31 日
???Error using ==>rgb2gray>parse_inputs at 82 MAP must be a m*3 array.
Error in ==>rgb2gray at 35 X=parse_inputs(varargin{:});
Error in ==>match at 167 im1=(double(rgb2gray(I)));
Can anyone please tell me why rgb2gray is showing problem.And what is meaning of error.
  2 件のコメント
Ryan
Ryan 2012 年 7 月 31 日
What class/size is I?
matlab_image
matlab_image 2012 年 7 月 31 日
Thanks dear but the problem got solved by changing I to Img.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2012 年 7 月 31 日
First of all, pick a different name than I. I looks too much like 1 and l. Maybe use rgbImage. Then say "whos I" on the command line and see what it says. Also, you don't need the parentheses around the double() command. So you can do something like
whos rgbImage
size(rgbImage)
doubleRGBImage = double(rgb2gray(rgbImage));
If you still can't figure it out, come back here and tell us what else you learned. My guess is that your I is not a normal color image with 3 color channels.
  1 件のコメント
matlab_image
matlab_image 2012 年 7 月 31 日
Thanks a lot Image Analyst. I have just changed I to Img and now it works. Thanks again.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by