Macro imageproc::rgb_image_i32 [] [src]

macro_rules! rgb_image_i32 {
    () => { ... };
    ($( $( [$r: expr, $g: expr, $b: expr]),*);*) => { ... };
}

Helper for defining RGB images with i32 subpixels. Pixels are delineated by square brackets, columns are separated by commas and rows are separated by semi-colons.

See the rgb_image documentation for examples.