Clear Filters
Clear Filters

hii sir i am getting error in 9th line please do help me for this sir

3 views (last 30 days)
clc;
close all;
clear all;
InputImage=imread('ship1.jpg');
ReconstructedImage=imread('Capture.PNG');
n=size(InputImage);
M=n(1);
N=n(2);
MSE = sum(sum((InputImage-ReconstructedImage).^2))/(M*N);
PSNR = 10*log10(256*256/MSE);
fprintf('\nMSE: %7.2f', MSE);
fprintf('\nPSNR: %9.7f dB', PSNR);

Answers (1)

Image Analyst
Image Analyst on 3 Apr 2016
Edited: Image Analyst on 3 Apr 2016
Simply use the built-in functions for this: immse() and psnr().
Also, are they color images?

Community Treasure Hunt

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

Start Hunting!