How do I verify whether what I am removing from a noisy image is only the noise

1 view (last 30 days)
Hi All
I have to remove noise from an image, that I don't have a sample without noise to compare to. How could I know if I am not removing more than noise, like some data from the real image itself ?

Accepted Answer

Image Analyst
Image Analyst on 9 Oct 2018
One way is to look at the difference of the denoised image and the original image.
diffImage = double(originalImage) - double(denoisedImage);
imshow(diffImage, []);
colorbar;
If you see any sort of structure in the image, then you're removing more than just noise. If it looks like completely random white noise with no spatial structures evident, then it's probably only noise that you've removed.

More Answers (1)

Walter Roberson
Walter Roberson on 9 Oct 2018
Create several images and corresponding noisy images with similar noise characteristics to those you are likely faced with, and adjust your code until you are satisfied that it only removes noise. Then apply it to your input image.
... Expect this process to take a number of centuries to come up with the right algorithm.

Community Treasure Hunt

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

Start Hunting!