I have these two codes. Can someone help me determine whats wrong with them.
古いコメントを表示
For the "jpegcomp" code, i get an error message telling me to "% load file of variables containing a gray image matrix" even when i load a greyscale lenna image.
for the "didi.m" code, i get an error on ine 12...
I am using matlab R2007b version. Please look at my codes and advise me on what to do.
thank you very much
3 件のコメント
Walter Roberson
2013 年 1 月 8 日
What error do you get on line 12? Is it complaining that dct() is unknown? Do you have the Signal Processing Toolbox installed? (Image Processing Toolbox has dct2(), the 2D equivalent.)
Andrew
2013 年 1 月 8 日
Walter Roberson
2013 年 1 月 8 日
So it is complaining that dct is unknown. Do you have the Signal Processing Toolbox installed?
回答 (1 件)
Image Analyst
2013 年 1 月 8 日
o is a bad name for a variable - looks too much like a zero. Anyway, put these lines in and tell me what's in the command window:
whos o
[rows, columns, numberOfColorChannels] = size(o) % No semicolon!
2 件のコメント
Andrew
2013 年 1 月 8 日
Walter Roberson
2013 年 1 月 8 日
That is an RGB image, not a grayscale image as you earlier claimed. It is possible that the R, G, and B planes are all the same; if so then
oR = o(:,:,1);
and work on that instead of on "o".
カテゴリ
ヘルプ センター および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!