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 Center および File ExchangeFractals についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by