finding MSE and MAE for RGB image

6 views (last 30 days)
i have a equation below please tell how to find MSE and MAE for RGB image

Accepted Answer

Walter Roberson
Walter Roberson on 21 Dec 2012
To within a constant factor that might depend upon image size,
MSE = sum( (FirstImage(:) - SecondImage(:)).^2 );
  8 Comments
FIR
FIR on 21 Dec 2012
so walter can u tell how to write eq for MAE PLEASE
Walter Roberson
Walter Roberson on 21 Dec 2012
Like MSE except using abs() instead of .^2

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!