pub trait TextDetectionModel_EASTTraitConst: TextDetectionModelTraitConst {
    // Required method
    fn as_raw_TextDetectionModel_EAST(&self) -> *const c_void;

    // Provided methods
    fn get_confidence_threshold(&self) -> Result<f32> { ... }
    fn get_nms_threshold(&self) -> Result<f32> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn get_confidence_threshold(&self) -> Result<f32>

Get the detection confidence threshold

source

fn get_nms_threshold(&self) -> Result<f32>

Get the detection confidence threshold

Object Safety§

This trait is not object safe.

Implementors§