Why the denoised image is not visible after running wdenoise2 code
1 回表示 (過去 30 日間)
古いコメントを表示
This is my code
wdenoise2(double(gr),3,'Wavelet','coif5','NoiseEstimate','LevelDependent','DenoisingMethod','Bayes','ThresholdRule','Median','NoiseDirection',["h","v","d"]);
and the image look like this. Can anyone help me to perform denoising images using wavelet s
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/428223/image.jpeg)
0 件のコメント
回答 (1 件)
Walter Roberson
2020 年 11 月 25 日
imshow(denoised, [0 255])
assuming that the original image is uint8.
You should be considering using im2double() on your original image, processing the result. imwrite() and imshow() can accept the results directly, or you can im2uint8() after the processing.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!