pub trait ImageCollectionTrait: ImageCollectionTraitConst {
    fn as_raw_mut_ImageCollection(&mut self) -> *mut c_void;

    fn init(&mut self, img: &str, flags: i32) -> Result<()> { ... }
    fn at(&mut self, index: i32) -> Result<Mat> { ... }
    fn get_mut(&mut self, index: i32) -> Result<Mat> { ... }
    fn release_cache(&mut self, index: i32) -> Result<()> { ... }
    fn begin(&mut self) -> Result<ImageCollection_iterator> { ... }
    fn end(&mut self) -> Result<ImageCollection_iterator> { ... }
}

Required Methods§

Provided Methods§

Implementors§