imgfprint 0.4.1

High-performance, deterministic image fingerprinting library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Image processing utilities.
//!
//! This module provides low-level image processing operations:
//! - [`decode`](decode): Image decoding from various formats
//! - [`preprocess`](preprocess): Image normalization and feature extraction
//!
//! These are used internally by the fingerprinting pipeline but may
//! also be used directly for custom processing workflows.

pub mod decode;
pub mod preprocess;