Defines the classification result.
Definition MMIndResult.h:85
std::vector< float > confidences
Confidence of the corresponding category.
Definition MMIndResult.h:87
std::vector< int > labels
Category label.
Definition MMIndResult.h:86
Defines the defect segmentation and edge detection results.
Definition MMIndResult.h:76
MMindImage confidenceMat
Confidence map of the segmentation result.
Definition MMIndResult.h:78
MMindContour mask
Contour of the segmentation result.
Definition MMIndResult.h:77
Defines the information on the bounding box.
Definition MMIndResult.h:54
float upperLeftY
Y-coordinate of the upper-left corner.
Definition MMIndResult.h:56
int label
Label of the bounding box.
Definition MMIndResult.h:60
float lowerRightY
Y-coordinate of the lower-right corner.
Definition MMIndResult.h:58
float confidence
Confidence of the bounding box.
Definition MMIndResult.h:59
float upperLeftX
X-coordinate of the upper-left corner.
Definition MMIndResult.h:55
float lowerRightX
X-coordinate of the lower-right corner.
Definition MMIndResult.h:57
Defines the information on the mask contour.
Definition MMIndResult.h:67
size_t contourNum
The number of contours.
Definition MMIndResult.h:68
std::vector< std::vector< MMindPoint > > contourPoints
Contour points.
Definition MMIndResult.h:69
Defines the fast positioning result.
Definition MMIndResult.h:103
std::vector< MMindPoint > rotationCenterPoints
Result of the rotation center point.
Definition MMIndResult.h:105
std::vector< double > angles
Result of the rotation angle.
Definition MMIndResult.h:104
Defines the Image.
Definition MMindImage.h:43
Defines the object detection and instance segmentation result.
Definition MMIndResult.h:94
MMindContour insMask
Contour of the segmentation result.
Definition MMIndResult.h:96
std::vector< MMindBbox > bboxes
Result of the bounding box.
Definition MMIndResult.h:95
Defines the information on contour points.
Definition MMIndResult.h:45
int x
The x-coordinate of the contour point.
Definition MMIndResult.h:46
int y
The y-coordinate of the contour point.
Definition MMIndResult.h:47
Defines storing inference results.
Definition MMIndResult.h:148
std::vector< MMindUnsupSegResult > unsupSegResults
List of unsupervised segmentation results.
Definition MMIndResult.h:155
std::vector< MMIndDefectAndEdgeResult > defectAndEdgeResults
List of defect segmentation results.
Definition MMIndResult.h:150
std::vector< MMindFastPositioningResult > fastPositioningResults
List of fast positioning results.
Definition MMIndResult.h:152
std::vector< MMindTextRecognitionResult > textRecognitionResults
List of text recognition results.
Definition MMIndResult.h:153
std::vector< MMindObjectAndInsResult > objecAndInsResults
List of object detection or instance segmentation results.
Definition MMIndResult.h:151
std::vector< MMindTextDetectionResult > textDetectionResults
List of text detection results.
Definition MMIndResult.h:154
std::vector< MMIndClassificationResult > classificationResults
List of classification results.
Definition MMIndResult.h:149
Defines the text detection result.
Definition MMIndResult.h:121
std::vector< double > confidences
Confidences of text detection.
Definition MMIndResult.h:122
MMindContour textContour
Result of text detection.
Definition MMIndResult.h:123
Defines the text recognition result.
Definition MMIndResult.h:112
std::vector< std::string > texts
Result of text recognition.
Definition MMIndResult.h:114
std::vector< float > confidences
Confidences of text recognition.
Definition MMIndResult.h:113
Defines the unsupervised segmentation result.
Definition MMIndResult.h:130
MMindImage confidenceMat
Confidence map of the unsupervised segmentation result.
Definition MMIndResult.h:141
std::vector< Label > labels
Labels of the unsupervised segmentation result.
Definition MMIndResult.h:139
MMindContour mask
Contour of the unsupervised segmentation result.
Definition MMIndResult.h:140
Label
Defines the unsupervised segmentation label.
Definition MMIndResult.h:134
@ UNKNOWN
<There are some defects in the current image.
@ NG
<There are no defects in the current image.