imageproc 0.26.1

Image processing operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! [Perceptual hashing] algorithms for images.
//!
//! [Perceptual hashing]: https://en.wikipedia.org/wiki/Perceptual_hashing

mod average_hash;

mod bits;
#[cfg(feature = "fft")]
mod phash;
#[cfg(feature = "fft")]
mod signals;

#[cfg(feature = "fft")]
pub use phash::{PHash, phash};

use bits::Bits64;

pub use average_hash::{AverageHash, average_hash};