Borrar filtros
Borrar filtros

How can I resolve the following error?

1 visualización (últimos 30 días)
Syed Zenith Rhyhan
Syed Zenith Rhyhan el 17 de Sept. de 2018
Editada: KALYAN ACHARJYA el 17 de Sept. de 2018
ref = imread('6.jpg'); imshow(ref) A = imnoise(ref,'salt & pepper', 0.02); imshow(A) err = immse(A, ref); fprintf('\n The mean-squared error is %0.4f\n', err);
::::::::::Error:::::::::
Undefined function 'immse' for input arguments of type 'uint8'. Error in main (line 17) err = immse(I, im); >>

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 17 de Sept. de 2018
Editada: KALYAN ACHARJYA el 17 de Sept. de 2018
ref=imread('test.jpg'); % Change the image Name
figure, imshow(ref), title('Input Image');
A=imnoise(ref,'salt & pepper', 0.02);
figure,imshow(A), title('InputImage with Noise');
err=immse(A,ref);
fprintf('\n The mean-squared error is %0.4f\n',err);
  3 comentarios
KALYAN ACHARJYA
KALYAN ACHARJYA el 17 de Sept. de 2018
Which Matlab version you are using?
This function imse(Mean Square Error) was introduced in 2014b onwards.
KALYAN ACHARJYA
KALYAN ACHARJYA el 17 de Sept. de 2018
Editada: KALYAN ACHARJYA el 17 de Sept. de 2018
Welcome! Happy to Help You!
Regards,
Kalyan Acharjya

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by