필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
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 ?

채택된 답변

Image Analyst
Image Analyst 2018년 10월 9일
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.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2018년 10월 9일
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.

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by