cv.fastNlMeansDenoisingColoredMulti - MATLAB File Help |
Modification of fastNlMeansDenoisingMulti function for colored images sequences
dst = cv.fastNlMeansDenoisingColoredMulti(srcImgs, imgToDenoiseIndex, temporalWindowSize)
dst = cv.fastNlMeansDenoisingColoredMulti(..., 'OptionName',optionValue, ...)
srcImgs
sequence
(0-based index).imgToDenoiseIndex - temporalWindowSize/2
to
imgToDenoiseIndex + temporalWindowSize/2
from srcImgs
will be used to
denoise srcImgs{imgToDenoiseIndex}
image.srcImgs
images.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. default 3SearchWindowsSize
- greater denoising time.
Recommended value 21 pixels. default 21srcImgs{i}
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 falseThe function converts images to CIELAB colorspace and then separately
denoise L and AB components with given H
parameters using
cv.fastNlMeansDenoisingMulti function.