image_moments/
lib.rs

1//! Efficient and compile-time checked calculations of image moments
2
3#![deny(
4    missing_docs,
5    missing_debug_implementations,
6    missing_copy_implementations,
7    trivial_casts,
8    trivial_numeric_casts,
9    unstable_features,
10    unused_import_braces,
11    unused_qualifications
12)]
13
14mod central;
15/// The actual implementation details.
16mod implementation;
17mod index;
18mod moments;
19mod normalized_central;
20mod order;
21mod primitives;
22mod spatial;
23
24pub use self::central::Central;
25pub use self::index::{Index, SupportedIndex};
26pub use self::moments::Moments;
27pub use self::normalized_central::NormalizedCentral;
28pub use self::order::{Order, SupportedOrder};
29pub use self::primitives::{Point, Scalar};
30pub use self::spatial::Spatial;