Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
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 ?

Réponse acceptée

Image Analyst
Image Analyst le 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.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 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.

Catégories

En savoir plus sur Image Segmentation and Analysis dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by