Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to denoise this image?
1 回表示 (過去 30 日間)
古いコメントを表示
I have two image
- Noisy Image
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/672533/image.png)
2. Targetted Image
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/672538/image.png)
I am totally confused and tried different filters like Weiner, median, bilat, etc but confused about how to proceed for this to denoise this image?
figure;
subplot(2,2,1);
imshow(noisy);
af=fftshift(fft2(noisy));
subplot(2,2,2);
imshow(mat2gray(log(1+abs(af))));
subplot(2,2,3);
imshow(real_img);
af2=fftshift(fft2(real_img));
subplot(2,2,4);
imshow(mat2gray(log(1+abs(af2))));
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/672543/image.png)
0 件のコメント
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!