How to calculate noise in image

25 次查看(过去 30 天)
laxmi menaria
laxmi menaria 2017-8-2
编辑: Lokesh 2022-7-7
How to calculate noise in image I am using a gray image

回答(1 个)

Lokesh
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:

类别

Help CenterFile Exchange 中查找有关 Geometric Transformation and Image Registration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by