How to calculate noise in image
14 ビュー (過去 30 日間)
古いコメントを表示
How to calculate noise in image I am using a gray image
0 件のコメント
回答 (1 件)
Lokesh
2022 年 7 月 7 日
編集済み: Lokesh
2022 年 7 月 7 日
It is my understanding that you would want to calculate noise in a gray image.
The function estimate_noise inputs a grayscale image I and returns Sigma, the noise estimate. Here is a sample use:
I = rgb2gray(imread('sample.jpg')); ( can be skipped when input image is gray)
Sigma=estimate_noise(I);
Refer to this link for more details:
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!