void |
TextDetectionModel.detectTextRectangles(Mat frame,
MatOfRotatedRect detections) |
void |
TextDetectionModel.detectTextRectangles(Mat frame,
MatOfRotatedRect detections,
MatOfFloat confidences)
Performs detection
Given the input frame , prepare network input, run network inference, post-process network output and return result detections.
|
static void |
Dnn.NMSBoxesRotated(MatOfRotatedRect bboxes,
MatOfFloat scores,
float score_threshold,
float nms_threshold,
MatOfInt indices) |
static void |
Dnn.NMSBoxesRotated(MatOfRotatedRect bboxes,
MatOfFloat scores,
float score_threshold,
float nms_threshold,
MatOfInt indices,
float eta) |
static void |
Dnn.NMSBoxesRotated(MatOfRotatedRect bboxes,
MatOfFloat scores,
float score_threshold,
float nms_threshold,
MatOfInt indices,
float eta,
int top_k) |