I noticed that Deepstream 6.1 has some nice drawing of the gaze using the extra fields in :
typedef struct
{
float gaze_params[cvcore::gazenet::GazeNet::OUTPUT_SIZE];
int left_start_x;
int left_start_y;
int left_end_x;
int left_end_y;
int right_start_x;
int right_start_y;
int right_end_x;
int right_end_y;
}NvDsGazeMetaData;
where as Deepstream 6.0.1’s version of that structure only has a:
Q1: where can i find the documentation of the content for the gaze_params ? Q2: should i be able to back-port the newer version of NvDsGazeMetaData to a deepstream 6.0.1 application ?