rawshift-image 0.1.1

Still-image decoding, RAW processing, and encoding for rawshift
Documentation
1
2
3
4
5
6
7
8
9
//! Pixel processing and color space conversion primitives

pub mod color;
pub mod demosaic;
pub mod options;
// pub mod simd; // TODO: Skip for now, accelerate regular implementations with SIMD (AVX2, AVX512, NEON, etc.)

pub use demosaic::{BayerAlgorithm, Demosaic, DemosaicMethod, XTransAlgorithm};
pub use options::ProcessingOptions;