pub trait TextDetectionModel_EASTTrait: TextDetectionModelTrait + TextDetectionModel_EASTTraitConst {
    fn as_raw_mut_TextDetectionModel_EAST(&mut self) -> *mut c_void;

    fn set_confidence_threshold(
        &mut self,
        conf_threshold: f32
    ) -> Result<TextDetectionModel_EAST> { ... } fn set_nms_threshold(
        &mut self,
        nms_threshold: f32
    ) -> Result<TextDetectionModel_EAST> { ... } }

Required Methods

Provided Methods

Set the detection confidence threshold

Parameters
  • confThreshold: A threshold used to filter boxes by confidences

Set the detection NMS filter threshold

Parameters
  • nmsThreshold: A threshold used in non maximum suppression

Implementors