I have these two codes. Can someone help me determine whats wrong with them.

조회 수: 1 (최근 30일)
Andrew
Andrew 2013년 1월 8일
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
Andrew
Andrew 2013년 1월 8일
this is the comment i get when i run the code..
"(An input argument of type 'double') method 'dct' function, or undefined." Error ==> didi at 12 rowdct = dct(double(o(i,:,k)));
Walter Roberson
Walter Roberson 2013년 1월 8일
So it is complaining that dct is unknown. Do you have the Signal Processing Toolbox installed?

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
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
Andrew 2013년 1월 8일
This is what i get when i input your statement into the command window
>> whos o [rows, columns, numberOfColorChannels] = size(o) Name Size Bytes Class Attributes
o 275x183x3 150975 uint8
rows =
275
columns =
183
numberOfColorChannels =
3
Walter Roberson
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".

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by