123 std::vector<MMIndClassificationResult>
125 std::vector<MMIndDefectAndEdgeResult>
127 std::vector<MMindObjectAndInsResult>
129 std::vector<MMindFastPositioningResult>
Defines the classification result.
Definition MMIndResult.h:96
std::vector< float > confidences
Confidence of the corresponding category.
Definition MMIndResult.h:98
std::vector< int > labels
Category label.
Definition MMIndResult.h:97
Defines the defect segmentation and edge detection results.
Definition MMIndResult.h:87
MMindImage confidenceMat
Confidence map of the segmentation result.
Definition MMIndResult.h:89
MMindContour mask
Contour of the segmentation result.
Definition MMIndResult.h:88
Defines the information on the bounding box.
Definition MMIndResult.h:65
float upperLeftY
Y-coordinate of the upper-left corner.
Definition MMIndResult.h:67
int label
Label of the bounding box.
Definition MMIndResult.h:71
float lowerRightY
Y-coordinate of the lower-right corner.
Definition MMIndResult.h:69
float confidence
Confidence of the bounding box.
Definition MMIndResult.h:70
float upperLeftX
X-coordinate of the upper-left corner.
Definition MMIndResult.h:66
float lowerRightX
X-coordinate of the lower-right corner.
Definition MMIndResult.h:68
Defines the information on the mask contour.
Definition MMIndResult.h:78
size_t contourNum
The number of contours.
Definition MMIndResult.h:79
std::vector< std::vector< MMindPoint > > contourPoints
Contour points.
Definition MMIndResult.h:80
Defines the fast positioning result.
Definition MMIndResult.h:114
std::vector< MMindKeyPoints > keyPoints
Result of keypoint detection.
Definition MMIndResult.h:116
std::vector< double > angle
Result of the rotation angle.
Definition MMIndResult.h:115
Definition MMindImage.h:40
Defines the information on fast positioning keypoints.
Definition MMIndResult.h:54
float startX
X-coordinate of the starting point for fast positioning.
Definition MMIndResult.h:55
float startY
Y-coordinate of the starting point for fast positioning.
Definition MMIndResult.h:56
float endY
Y-coordinate of the end point for fast positioning.
Definition MMIndResult.h:58
float endX
X-coordinate of the end point for fast positioning.
Definition MMIndResult.h:57
Defines the object detection and instance segmentation result.
Definition MMIndResult.h:105
MMindContour insMask
Contour of the segmentation result.
Definition MMIndResult.h:107
std::vector< MMindBbox > bboxes
Result of the bounding box.
Definition MMIndResult.h:106
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:122
std::vector< MMIndDefectAndEdgeResult > defectAndEdgeResults
List of defect segmentation results.
Definition MMIndResult.h:126
std::vector< MMindFastPositioningResult > fastPositioningResults
List of fast positioning results.
Definition MMIndResult.h:130
std::vector< MMindObjectAndInsResult > objecAndInsResults
List of object detection or instance segmentation results.
Definition MMIndResult.h:128
std::vector< MMIndClassificationResult > classificationResults
List of classification results.
Definition MMIndResult.h:124