Borrar filtros
Borrar filtros

how to find MSE and PSNR of an image

9 visualizaciones (últimos 30 días)
Nouf Alraisi
Nouf Alraisi el 2 de Dic. de 2023
Respondida: Yash el 2 de Dic. de 2023
we were given a salt and pepper picture and we were asked to filter it, after that we have to find the MSE and PSNR
mse_median = immse(snp,fltered_image)
is this command correct for MSE?

Respuestas (1)

Yash
Yash el 2 de Dic. de 2023
Hello Nouf,
Yes, the immse function can be used to calculate the mean squared error (MSE) between two images in MATLAB. The command you provided looks correct, assuming that snp is the original salt and pepper image and filtered_image is the filtered version of the image.
To calculate the peak signal-to-noise ratio (PSNR), you can use the psnr function in MATLAB. Here's an example code snippet:
>> psnr_val = psnr(filtered_image, snp); % calculating PSNR
This code calculates the PSNR between the filtered image and the original salt and pepper image, and stores the result in the variable psnr_val.
To know more about the immse and psnr functions in MATLAB, you can refer to below documentations:
Hope this helps!

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by