Base class for segmentation 3D object data in the vector<float> mode.
Declaration
typedef struct
{
int width;
int height;
std::vector< int > array;
} vitis::ai::Segmentation3DResult;
Member | Description |
---|---|
width | Width of the network model. |
height | Height of the network model. |
array | Input 3D object data. |