ndimage 0.1.1

A simple library for conversion between ndarray and image
Documentation
1
2
3
4
5
/// Convert a type into image
pub trait IntoImage {
    type Output;
    fn into_image(self) -> Self::Output;
}