필터 지우기
필터 지우기

how to find MSE and PSNR of an image

조회 수: 9 (최근 30일)
Nouf Alraisi
Nouf Alraisi 2023년 12월 2일
답변: Yash 2023년 12월 2일
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?

답변 (1개)

Yash
Yash 2023년 12월 2일
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!

태그

Community Treasure Hunt

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

Start Hunting!

Translated by