PSNR bsed comparisson of images
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sir, I have 4 images A,B,C,D and I have to compare image A using psnr, with respect to A,B,C and D. please suggest the code
0 comentarios
Respuestas (1)
Image Analyst
el 4 de Feb. de 2015
There is a function psnr() in the Image Processing Toolbox. If you don't have that, you can do it manually yourself. See my attached program.
3 comentarios
Image Analyst
el 4 de Feb. de 2015
Why would there be an if/else block??? What would you be testing/checking/comparing in the if statement? Anyway I'm sure (or at least I'd like to think) that you know how to use an if/else statement
if someExpression
% Do something such as call psnr
elseif someOtherExpression
% Do something else
else
% When all else fails, do this
end
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!