edit-calculating PSNR
Afficher commentaires plus anciens
As in my previous post
MSE = mean2((single(image1) - single(image2)).^2);
i get error,matrix dimension must agree,please help
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 22 Mar 2012
"Matrix dimension" basically means the size of your image. Your images must both be of the same size, not just laterally but also in the number of colors. So you can't subtract a grayscale image from a color one or vice versa. Do this and see what it says:
[rows1 columns1 numberOfColorChannels1] = size(image1)
[rows2 columns2 numberOfColorChannels2] = size(image2)
2 commentaires
kash
le 22 Mar 2012
Image Analyst
le 22 Mar 2012
Well there you go. Matrix dimensions are not the same, just like it said. Plus, like Walter said, this is not really meaningful (assuming you resized them to match) since of course you know you will get a big number because it's a low pass version of the original image. Nothing really surprising there, or worth measuring I don't think.
Catégories
En savoir plus sur Multirate Signal Processing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!