Expand description
Noise reduction algorithms for RGB image data.
This module provides spatial noise reduction filters that operate on fully demosaiced RGB images. The primary algorithm is the bilateral filter, which preserves edges while smoothing noise by weighting contributions from both spatial proximity and intensity similarity.
Functionsยง
- apply_
bilateral_ filter - Apply bilateral noise reduction filter to an RGB image.
- apply_
gaussian_ blur - Apply a simple Gaussian blur for fast noise reduction (lower quality).