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
12
//! Color matching across cameras and scenes.
//!
//! This module provides tools for matching colors between multiple cameras,
//! scenes, and reference targets for consistent color reproduction.

pub mod camera;
pub mod reference;
pub mod scene;

pub use camera::{CameraMatch, CameraMatchConfig};
pub use reference::{ReferenceMatch, ReferenceTarget};
pub use scene::{SceneMatch, SceneMatchConfig};