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
13
14
//! Camera calibration and profiling.
//!
//! This module provides tools for calibrating cameras using `ColorChecker` targets
//! and generating camera profiles for color-accurate image reproduction.

pub mod calibrate;
pub mod colorchecker;
pub mod dng;
pub mod profile;

pub use calibrate::CameraCalibrator;
pub use colorchecker::{ColorChecker, ColorCheckerType, PatchColor};
pub use dng::{DngColorProfile, DualIlluminantCalibration};
pub use profile::{CameraProfile, ProfileQuality};