pub trait TransientAreasSegmentationModuleTraitConst: AlgorithmTraitConst {
// Required method
fn as_raw_TransientAreasSegmentationModule(&self) -> *const c_void;
// Provided methods
fn write(&self, fs: &str) -> Result<()> { ... }
fn write_to_storage(&self, fs: &mut impl FileStorageTrait) -> Result<()> { ... }
}
Expand description
Constant methods for crate::bioinspired::TransientAreasSegmentationModule
Required Methods§
fn as_raw_TransientAreasSegmentationModule(&self) -> *const c_void
Provided Methods§
sourcefn write(&self, fs: &str) -> Result<()>
fn write(&self, fs: &str) -> Result<()>
write xml/yml formated parameters information
§Parameters
- fs: : the filename of the xml file that will be open and writen with formatted parameters information
sourcefn write_to_storage(&self, fs: &mut impl FileStorageTrait) -> Result<()>
fn write_to_storage(&self, fs: &mut impl FileStorageTrait) -> Result<()>
write xml/yml formated parameters information
§Parameters
- fs: : a cv::Filestorage object ready to be filled
Object Safety§
This trait is not object safe.