ultrahdr-core 0.3.4

Core gain map math and metadata for Ultra HDR - no codec dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Gain map computation and application.
//!
//! The gain map stores the ratio between HDR and SDR luminance values,
//! allowing reconstruction of HDR content from the SDR base image.

pub mod apply;
pub mod apply_simd;
pub mod compute;
pub mod streaming;

pub use apply::*;
pub use apply_simd::*;
pub use compute::*;
pub use streaming::*;