Can anyone please help me to fix this error in the coding of fractal image compression ? Your help is greatly appreciated. Thank you.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
magnum ex
le 1 Déc 2017
Commenté : Walter Roberson
le 21 Nov 2018
%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.
0 commentaires
Réponse acceptée
chandrapal Singh
le 1 Déc 2017
I tried this same code in MATLAB 2013b. It is working fine. You can try with PSNR function attached.
6 commentaires
Noor Abbas
le 21 Nov 2018
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
le 21 Nov 2018
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 .
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Fractals dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!