pub trait ColorCorrectionModelTraitConst {
    // Required method
    fn as_raw_ColorCorrectionModel(&self) -> *const c_void;

    // Provided methods
    fn get_ccm(&self) -> Result<Mat> { ... }
    fn get_loss(&self) -> Result<f64> { ... }
    fn get_src_rgbl(&self) -> Result<Mat> { ... }
    fn get_dst_rgbl(&self) -> Result<Mat> { ... }
    fn get_mask(&self) -> Result<Mat> { ... }
    fn get_weights(&self) -> Result<Mat> { ... }
}
Expand description

Constant methods for crate::mcc::ColorCorrectionModel

Required Methods§

Provided Methods§

Implementors§