what is the difference between the MSE of rgb image and gray scale image ?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
shameen khan
el 27 de Mayo de 2015
Editada: Image Analyst
el 27 de Mayo de 2015
what is the difference between the MSE of rgb image and gray scale image ?
0 comentarios
Respuesta aceptada
Image Analyst
el 27 de Mayo de 2015
Editada: Image Analyst
el 27 de Mayo de 2015
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.
0 comentarios
Más respuestas (1)
Walter Roberson
el 27 de Mayo de 2015
MSE = sum(((double(FirstImage(:))-double(SecondImage(:)).^2) ./ numel(FirstImage);
This works regardless of whether the image is RGB or grayscale.
0 comentarios
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!