Filter löschen
Filter löschen

MEAN SQUARED ERROR on sectional images

3 Ansichten (letzte 30 Tage)
Jerome
Jerome am 28 Mär. 2013
I am interested in computing the mean squared error (MSE) for a section of the image; however, I get an error. Can someone assist me with it?
>> MSE=reshape(mean(mean((double(M1(192:318,1:900)) - double(M2(192:318,1:900))).^2,2),1),[1,3]);
Error: To RESHAPE the number of elements must not change.
  1 Kommentar
Image Analyst
Image Analyst am 28 Mär. 2013
Bearbeitet: Image Analyst am 28 Mär. 2013
mean mean is one number. You're trying to shape it into a 1 by 3 array. By the way, how about going back and accepting some answers to your prior questions?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 28 Mär. 2013
Why not just say
squaredDifference = (double(M1(192:318,1:900)) - double(M2(192:318,1:900))) .^ 2
MSE = mean2(squaredDifference);

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

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

Start Hunting!

Translated by