Trait opencv::dnn::ClassificationModelTraitConst
source · pub trait ClassificationModelTraitConst: ModelTraitConst {
// Required method
fn as_raw_ClassificationModel(&self) -> *const c_void;
// Provided method
fn get_enable_softmax_post_processing(&self) -> Result<bool> { ... }
}
Expand description
Constant methods for crate::dnn::ClassificationModel
Required Methods§
fn as_raw_ClassificationModel(&self) -> *const c_void
Provided Methods§
sourcefn get_enable_softmax_post_processing(&self) -> Result<bool>
fn get_enable_softmax_post_processing(&self) -> Result<bool>
Get enable/disable softmax post processing option.
This option defaults to false, softmax post processing is not applied within the classify() function.