MATLAB File Help: cv.fastNlMeansDenoisingColored | Index |
Modification of fastNlMeansDenoising function for colored images
dst = cv.fastNlMeansDenoisingColored(src)
dst = cv.fastNlMeansDenoisingColored(src, 'OptionName',optionValue, ...)
src
.H
value perfectly removes noise but also removes image details,
smaller H
value preserves details but also preserves some noise.
default 3H
but for color components. For most images value
equals 10 will be enough to remove colored noise and do not distort
colors. default 3SearchWindowsSize
- greater denoising time.
Recommended value 21 pixels. default 21src
and output dst
, between MATLAB's RGB/RGBA order and
OpenCV's BGR/BGRA (input: RGB/RGBA->BGR/BGRA,
output: BGR/BGRA->RGB/RGBA). default trueThe function converts image to CIELAB colorspace and then separately denoise
L and AB components with given H
parameters using cv.fastNlMeansDenoising
function.