ndarray-vision 0.3.0

A computer vision library built on top of ndarray
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// This module deals with different colour models and conversions between
/// colour models.
pub mod colour_models;
/// Core image type and simple operations on it
pub mod image;
/// Image padding operations to increase the image size
pub mod padding;
/// Essential traits for the functionality of `ndarray-vision`
pub mod traits;
/// Some utility functions required in different modules
pub mod util;

pub use colour_models::*;
pub use image::*;
pub use padding::*;
pub use traits::*;
pub use util::*;