oximedia-calibrate 0.1.8

Professional color calibration and matching tools for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! White balance algorithms and presets.
//!
//! This module provides tools for white balance adjustment and correction.

pub mod auto;
pub mod custom;
pub mod preset;

pub use auto::{AutoWhiteBalance, WhiteBalanceMethod};
pub use custom::CustomWhiteBalance;
pub use preset::WhiteBalancePreset;