what is the difference between the MSE of rgb image and gray scale image ?

22 次查看(过去 30 天)
what is the difference between the MSE of rgb image and gray scale image ?

采纳的回答

Image Analyst
Image Analyst 2015-5-27
编辑:Image Analyst 2015-5-27
There is a function called immse() but I bet it would only work if both images are the same type. If you have one that is monochrome and one that is color, either convert the color one to grayscale with rgb2gray() or convert the gray scale one to color with cat().
As for what is the difference, there's basically none. You just get the mean square error between every corresponding pixel, where there is one plane or 3 color planes.

更多回答(1 个)

Walter Roberson
Walter Roberson 2015-5-27
MSE = sum(((double(FirstImage(:))-double(SecondImage(:)).^2) ./ numel(FirstImage);
This works regardless of whether the image is RGB or grayscale.

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by