Hi All,
I am looking to modify this structure to add in a a new variable would it be possible and what would be the best way to go about it.
typedef struct
{
/** ID of the class to which the object belongs. */
unsigned int classId;
/** Horizontal offset of the bounding box shape for the object. */
unsigned int left;
/** Vertical offset of the bounding box shape for the object. */
unsigned int top;
/** Width of the bounding box shape for the object. */
unsigned int width;
/** Height of the bounding box shape for the object. */
unsigned int height;
/** Object detection confidence. Should be a float value in the range [0,1] */
float detectionConfidence;
} NvDsInferObjectDetectionInfo;