kornia_image/
lib.rs

1#![deny(missing_docs)]
2#![doc = env!("CARGO_PKG_DESCRIPTION")]
3
4/// allocator module containing the memory management utilities.
5pub mod allocator;
6
7/// image representation for computer vision purposes.
8pub mod image;
9
10/// Error types for the image module.
11pub mod error;
12
13/// module containing ops implementations.
14pub mod ops;
15
16pub use crate::error::ImageError;
17pub use crate::image::{Image, ImageSize};
18
19/// Arrow integration for converting images to Arrow format
20#[cfg(feature = "arrow")]
21pub mod arrow;