Struct rustml::opencv::RgbImage  
            
                [−]
            
        [src]
pub struct RgbImage {
    // some fields omitted
}pub struct RgbImage {
    // some fields omitted
}impl RgbImagefn from_file(fname: &str) -> Option<RgbImage>fn from_raw(image: *const IplImage) -> RgbImagefn pixel(&self, x: usize, y: usize) -> Option<Rgb>fn draw_box(&mut self, x: usize, y: usize, w: usize, h: usize, color: &Rgb)fn dup(&self) -> RgbImageimpl Image for RgbImagefn new(w: usize, h: usize) -> RgbImagefn grid(images: &Vec<Self>, cols: usize, space: usize) -> Option<RgbImage>fn buffer(&self) -> *const IplImagefn pixel_as_rgb(&self, x: usize, y: usize) -> Option<Rgb>fn set_pixel_from_rgb(&self, x: usize, y: usize, px: &Rgb)fn width(&self) -> usizefn height(&self) -> usizefn depth(&self) -> usizefn widthstep(&self) -> usizefn channels(&self) -> usizefn to_file(&self, fname: &str) -> boolfn copy_from<T: Image>(&mut self, img: &T, x: usize, y: usize, width: usize, height: usize, dstx: usize, dsty: usize)fn draw_text(&mut self, txt: &str, x: usize, y: usize, font: &Font)
                    Prefix searches with a type followed by a colon (e.g.
                    fn:) to restrict the search to a given type.
                
                    Accepted types are: fn, mod,
                    struct, enum,
                    trait, typedef (or
                    tdef).
                
                    Search functions by type signature (e.g.
                    vec -> usize)