hdim-core 0.1.0

Core logic and image manipulation algorithms for HDIM.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Image adjustment algorithms.
//!
//! This module contains the implementation of various image filters and
//! adjustments, such as brightness, contrast, exposure, and color-specific
//! transformations. Each sub-module provides an atomic function to apply
//! its specific transformation to a [image::DynamicImage].

pub mod brightness;
pub mod contrast;
pub mod exposure;
pub mod fade;
pub mod grain;
pub mod hue;
pub mod noise;
pub mod saturation;
pub mod vibrance;
pub mod warmth;