表示分割神经网络返回的结果的结构体。
声明
typedef struct
{
int width;
int height;
cv::Mat segmentation;
} vitis::ai::MedicalSegcellResult;
成员 | 描述 |
---|---|
width | 输入图像的宽度。 |
height | 输入图像的高度。 |
segmentation | cv::Mat 模式下的
Segmentation
结果。 |