Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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 ?

Respuesta aceptada

Image Analyst
Image Analyst el 9 de Oct. de 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.

Más respuestas (1)

Walter Roberson
Walter Roberson el 9 de Oct. de 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.

Categorías

Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by