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:
- MSE: https://in.mathworks.com/help/images/ref/immse.html
- PSNR: https://in.mathworks.com/help/images/ref/psnr.html
Hope this helps!