Declaration
typedef struct
{
int width,
int height,
cv::Mat positive_classification,
cv::Mat infected_area_classification
} vitis::ai::Covid19SegmentationResult;
Member | Description |
---|---|
width | Width of input image. |
height | Height of input image. |
positive_classification | Positive detection result. The cv::Mat type is CV_8UC1 or CV_8UC3. |
infected_area_classification | Infected area detection result. The cv::Mat type is CV_8UC1 or CV_8UC3. |