climage 0.1.0

Rust implementation of image processing library with OpenCL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod bilateral_filter;
mod buffer;
mod context;
mod gaussian_blur;
mod gray;
mod hflip;
mod imageproc;
mod vflip;

pub use bilateral_filter::*;
pub use buffer::*;
pub use context::*;
pub use gaussian_blur::*;
pub use gray::*;
pub use hflip::*;
pub use imageproc::*;
pub use vflip::*;