Hello,
I want to add a variable “nam_test” (int) into nvdsinfer.h, like that:
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;
/** Test Variable */
int nam_test;
/** Object detection confidence. Should be a float value in the range [0,1] */
float detectionConfidence;
} NvDsInferObjectDetectionInfo;
Then I run deepstream app fault.
How to recompiling library?
Thanks.