image-convolution 0.1.0

Parallel image convolution on GPU.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub type Real = f32;

pub mod convolution;
pub mod gpu_device;
mod image;
pub mod kernels;
mod pipeline;

pub use crate::image::Image;
pub use kernels::Kernel;
pub use pipeline::Pipeline;

pub enum BorderType {
    Crop,
    Mirror,
    Zero,
}