//! Color Filter Array (CFA) Demosaicing.
//!
//! This transform module acts as a high-level wrapper around the demosaicing algorithms
//! defined in [`crate::processing::demosaic`]. It handles the selection of the appropriate
//! algorithm and manages the conversion from raw sensor data to RGB image buffers.
use crate;
use crateRawResult;
use crateDemosaicMethod;
/// Demosaicing transform pipeline step.