pub trait ImageCollectionTrait: ImageCollectionTraitConst {
// Required method
fn as_raw_mut_ImageCollection(&mut self) -> *mut c_void;
// Provided methods
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> { ... }
}
Expand description
Mutable methods for crate::imgcodecs::ImageCollection