Rust implementation of image processing library with OpenCL.
```rust use climage; use climage::ImageProc;
fn main() {
let context = climage::ClContext::default();
let mut blur = climage::GaussianBlur::new(&context, 2);
let img = climage::ClImageBuffer::fromreadonlyhostimage(
&context,
image::open("examples/lenna.png").unwrap().intorgba8(),
);
let mut out = climage::ClImageBuffer::fromwriteonlyhostimage(
&context,
image::ImageBuffer::
sh
cargo run --release --example gaussian_blur