Can anyone please help me to fix this error in the coding of fractal image compression ? Your help is greatly appreciated. Thank you.

조회 수: 1 (최근 30일)
%Create psnr object
_
hpsnr = vision.PSNR;
psnr = step(hpsnr, I,outim);%calculate psnr
fprintf('PSNR= %f\n',psnr);%display psnr
Undefined variable "vision"
Error in main (line 74)
hpsnr = vision.PSNR;
*Below is the completed source code.

채택된 답변

chandrapal Singh
chandrapal Singh 2017년 12월 1일
I tried this same code in MATLAB 2013b. It is working fine. You can try with PSNR function attached.
  댓글 수: 6
Noor Abbas
Noor Abbas 2018년 11월 21일
Dear Magum,
I have used your code with big size image but have an error with m=m+((I(i,j)-outim(i,j))^2);
Could you please suggest any soluation
Best Regards,
Noor
Walter Roberson
Walter Roberson 2018년 11월 21일
The code assumes that I is a 2D array which is quite unlikely for any jpg.
In particular it uses size(I) with 2 outputs. When I has more than two dimensions then the second output will be the product of all of the remaining dimensions . size() with only one input argument is designed so that the product of the outputs is equal to the number of elements in the array . So for rgb with only two outputs the second output will be 3 times the number of columns .

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Fractals에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by