MxObject

Function Usage

Defines the object detection data information transferred between plugins in a stream.

Structure Definition

struct MxObject{ 
    std::vector<MxMetaHeader> headers;
    float x0;
    float y0;
    float x1;
    float y1;
    std::vector<mxClass> classList
    MxImageMask imageMask;
}

Parameter Description

Parameter

Input/Output

Description

headers

Input

Header information of semantic segmentation data

x0

Input

X coordinate of the upper left corner of the bounding box

y0

Input

Y coordinate of the upper left corner of the bounding box

x1

Input

X coordinate of the lower right corner of the bounding box

y1

Input

Y coordinate of the lower right corner of the bounding box

classList

Input

Information about all objects in the bounding box

imageMask

Input

Semantic segmentation information in the bounding box