rusty_vision/traits/mod.rs
1/**
2 * A collection of all the common traits that
3 * can be implemented for Image Manipulation.
4 *
5 * These are intended to be kept as traits to
6 * isolate implementation of different type of
7 * images.
8 * For example, these traits will have different
9 * implementations for an Image on CUDA or some
10 * other formats.
11 *
12 */
13mod draw;
14mod resize;
15mod rotate;
16
17// TODO: Find a better way to import.
18pub use draw::*;
19pub use resize::*;
20pub use rotate::*;