表示
MedicalSegmentation
神经网络返回的结果的结构体。声明
typedef struct
{
int width;
int height;
std::vector< cv::Mat > segmentation;
} vitis::ai::MedicalSegmentationResult;
| 成员 | 描述 |
|---|---|
| width | 输入图像的宽度。 |
| height | 输入图像的高度。 |
| segmentation | cv::Mat 的矢量(分割结果)。 |