Struct opencv::dnn::TextDetectionModel [−][src]
pub struct TextDetectionModel { /* fields omitted */ }
Expand description
Base class for text detection networks
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
fn detect_with_confidences(
&self,
frame: &dyn ToInputArray,
detections: &mut Vector<Vector<Point>>,
confidences: &mut Vector<f32>
) -> Result<()>
fn detect_with_confidences(
&self,
frame: &dyn ToInputArray,
detections: &mut Vector<Vector<Point>>,
confidences: &mut Vector<f32>
) -> Result<()>
Performs detection Read more
Performs detection Read more
fn detect_text_rectangles(
&self,
frame: &dyn ToInputArray,
detections: &mut Vector<RotatedRect>,
confidences: &mut Vector<f32>
) -> Result<()>
fn detect_text_rectangles(
&self,
frame: &dyn ToInputArray,
detections: &mut Vector<RotatedRect>,
confidences: &mut Vector<f32>
) -> Result<()>
Performs detection Read more
fn detect_text_rectangles_1(
&self,
frame: &dyn ToInputArray,
detections: &mut Vector<RotatedRect>
) -> Result<()>
fn detect_text_rectangles_1(
&self,
frame: &dyn ToInputArray,
detections: &mut Vector<RotatedRect>
) -> Result<()>
Performs detection Read more