NVIDIA DeepStream SDK API Reference

7.1 Release
nvdsmeta_schema.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
30 #ifndef NVDSMETA_H_
31 #define NVDSMETA_H_
32 
33 #include <glib.h>
34 
35 #ifdef __cplusplus
36 extern "C"
37 {
38 #endif
39 
43 typedef enum NvDsEventType {
51 
57  NVDS_EVENT_FORCE32 = 0x7FFFFFFF
59 
63 typedef enum NvDsObjectType {
85 
89 typedef enum NvDsPayloadType {
99  NVDS_PAYLOAD_FORCE32 = 0x7FFFFFFF
101 
105 typedef struct NvDsRect {
106  float top;
107  float left;
108  float width;
109  float height;
110 } NvDsRect;
111 
115 typedef struct NvDsGeoLocation {
116  gdouble lat;
117  gdouble lon;
118  gdouble alt;
120 
124 typedef struct NvDsCoordinate {
125  gdouble x;
126  gdouble y;
127  gdouble z;
129 
133 typedef struct NvDsObjectSignature {
135  gdouble *signature;
137  guint size;
139 
143 typedef struct NvDsProductObjectExt {
144  gchar *brand;
145  gchar *type;
146  gchar *shape;
147  GList *mask;
149 
153 typedef struct NvDsVehicleObject {
154  gchar *type;
155  gchar *make;
156  gchar *model;
157  gchar *color;
158  gchar *region;
159  gchar *license;
161 
165 typedef struct NvDsPersonObject {
166  gchar *gender;
167  gchar *hair;
168  gchar *cap;
170  gchar *apparel;
172  guint age;
174 
178 typedef struct NvDsFaceObject {
179  gchar *gender;
180  gchar *hair;
181  gchar *cap;
183  gchar *glasses;
185  gchar *facialhair;
186  gchar *name;
187  gchar *eyecolor;
188  guint age;
190 
194 typedef struct NvDsVehicleObjectExt {
195  gchar *type;
196  gchar *make;
197  gchar *model;
198  gchar *color;
199  gchar *region;
200  gchar *license;
202  GList *mask;
204 
208 typedef struct NvDsPersonObjectExt {
209  gchar *gender;
210  gchar *hair;
211  gchar *cap;
213  gchar *apparel;
215  guint age;
217  GList *mask;
219 
223 typedef struct NvDsFaceObjectWithExt {
224  gchar *gender;
225  gchar *hair;
226  gchar *cap;
228  gchar *glasses;
230  gchar *facialhair;
231  gchar *name;
232  gchar *eyecolor;
233  guint age;
235  GList *mask;
237 
241 typedef struct NvDsJoint {
242  float x;
243  float y;
244  float z;
245  float confidence;
246 } NvDsJoint;
247 
251 typedef struct NvDsJoints {
254  int pose_type;
255 } NvDsJoints;
256 
260 typedef struct NvDsEmbedding {
263 } NvDsEmbedding;
264 
268 typedef struct NvDsProductObject {
269  gchar *brand;
270  gchar *type;
271  gchar *shape;
273 
277 typedef struct NvDsConvexHull {
279  gint* points;
281  guint numFilled;
283 
287 typedef struct NvDs3DTracking {
289  gfloat ptWorldFeet[2];
291  gfloat ptImgFeet[2];
293  gfloat visibility;
297 
298 typedef struct _NvDsBbox3dObject {
299  float boxes_3d[10];
300  float scores_3d;
301  guint64 labels_3d;
302  float cls_scores; // confidence
306 
307 #define MAX_NUM_OBJECTS 300 // Define a maximum number of objects
308 typedef struct _NvDsBbox3dObjectList {
310  guint num_objects;
311  guint64 timestamp;
312  gint frame_num;
313  guint camera_id;
314  gchar *sensorStr;
316 
317 typedef struct {
318  gchar *id;
319  gchar *query;
320  gchar *response;
322 
323 typedef struct {
324  GHashTable *info;
329 } NvDsLLMObject;
330 
331 typedef struct {
332  gchar *id;
333  gchar **objectIds;
337  gchar *description;
338  GHashTable *info;
339  gint64 timestamp; // New field added
341 
342 typedef struct {
343  gchar *id;
344  gchar **objectIds;
346  float amount;
347  GHashTable *info;
348  gint64 timestamp; // New field added
350 
351 typedef struct {
352  gchar *id;
353  gchar *type;
354  gint32 count;
357  gchar **objectIds;
359  GHashTable *info;
361 
362 typedef struct {
363  gint32 *mask;
364  guint mask_size;
365  GHashTable *info;
367 
377 typedef struct NvDsEventMsgMeta {
393  gint sensorId;
395  gint moduleId;
397  gint placeId;
401  gint frameId;
403  gdouble confidence;
405  guint64 trackingId;
407  gchar *ts;
409  gchar *objectId;
411  gchar *sensorStr;
421  gint num_fov;
424 
425  gchar *otherAttrs;
427  gchar *videoPath;
431  gpointer extMsg;
433  guint extMsgSize;
443 
447 typedef struct _NvDsEvent {
452 } NvDsEvent;
453 
459 typedef struct _NvDsCustomMsgInfo {
460  void *message;
461  guint size;
463 
467 typedef struct NvDsPayload {
469  gpointer payload;
471  guint payloadSize;
474  guint componentId;
475 } NvDsPayload;
476 
477 #ifdef __cplusplus
478 }
479 #endif
480 #endif /* NVDSMETA_H_ */
481 
NvDsPersonObject
Holds a person object's parameters.
Definition: nvdsmeta_schema.h:165
NvDs3DTracking::visibility
gfloat visibility
Holds the object's visibility.
Definition: nvdsmeta_schema.h:293
NvDsEventMsgMeta::videoPath
gchar * videoPath
Holds a pointer to the name of the video file.
Definition: nvdsmeta_schema.h:427
NvDsEventMsgMeta::llm
NvDsLLMObject * llm
Definition: nvdsmeta_schema.h:416
NvDsEventMsgMeta::objectId
gchar * objectId
Holds a pointer to the detected or inferred object's ID.
Definition: nvdsmeta_schema.h:409
NvDsFaceObject::glasses
gchar * glasses
Holds a pointer to the type of glasses the person is wearing, if any.
Definition: nvdsmeta_schema.h:183
NVDS_OBJECT_TYPE_PERSON
@ NVDS_OBJECT_TYPE_PERSON
Definition: nvdsmeta_schema.h:65
NvDsCustomMsgInfo
struct _NvDsCustomMsgInfo NvDsCustomMsgInfo
Holds data for any user defined custom message to be attached to the payload message : custom message...
NvDsPayload
Holds payload metadata.
Definition: nvdsmeta_schema.h:467
NvDsLLMObject::num_conversations
guint num_conversations
Definition: nvdsmeta_schema.h:326
NvDsEventMsgMeta::extMsg
gpointer extMsg
Holds a pointer to event message meta data.
Definition: nvdsmeta_schema.h:431
NvDsProductObject
Holds a product object's parameters.
Definition: nvdsmeta_schema.h:268
NvDsFaceObject::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:188
NVDS_EVENT_FORCE32
@ NVDS_EVENT_FORCE32
Definition: nvdsmeta_schema.h:57
NvDsProductObject::brand
gchar * brand
Holds the product brand.
Definition: nvdsmeta_schema.h:269
NvDsLLMObject::conversations
NvDsConversationObject * conversations
Definition: nvdsmeta_schema.h:325
NvDsProductObjectExt::mask
GList * mask
Definition: nvdsmeta_schema.h:147
NvDsConversationObject
Definition: nvdsmeta_schema.h:317
NvDsConvexHull
struct NvDsConvexHull NvDsConvexHull
Holds 2D convex hull metadata.
NvDsPayload::componentId
guint componentId
Holds the ID of the component (plugin) which attached the payload (optional).
Definition: nvdsmeta_schema.h:474
NvDsCongestionObject
Definition: nvdsmeta_schema.h:342
NvDsEmbedding::embedding_length
guint embedding_length
Holds the length of embedding vector.
Definition: nvdsmeta_schema.h:262
NvDsFaceObjectWithExt::name
gchar * name
Holds a pointer to the person's name.
Definition: nvdsmeta_schema.h:231
NvDsRect
struct NvDsRect NvDsRect
Holds a rectangle's position and size.
NvDsFaceObject::facialhair
gchar * facialhair
Holds a pointer to the person's facial hair color.
Definition: nvdsmeta_schema.h:185
NVDS_OBJECT_TYPE_PRODUCT_EXT
@ NVDS_OBJECT_TYPE_PRODUCT_EXT
New Object Type for Product.
Definition: nvdsmeta_schema.h:75
NvDsEmbedding
Holds an embedding model's parameters.
Definition: nvdsmeta_schema.h:260
NvDsTypeMetricsObject::objectIds
gchar ** objectIds
Definition: nvdsmeta_schema.h:357
NVDS_EVENT_PARKED
@ NVDS_EVENT_PARKED
Definition: nvdsmeta_schema.h:49
NVDS_PAYLOAD_DEEPSTREAM_MINIMAL
@ NVDS_PAYLOAD_DEEPSTREAM_MINIMAL
Definition: nvdsmeta_schema.h:91
NVDS_OBJECT_TYPE_VEHICLE_EXT
@ NVDS_OBJECT_TYPE_VEHICLE_EXT
Definition: nvdsmeta_schema.h:70
NvDsFaceObjectWithExt::cap
gchar * cap
Holds a pointer to the type of cap the person is wearing, if any.
Definition: nvdsmeta_schema.h:226
NvDsInteractionObject::num_objectIds
guint num_objectIds
Definition: nvdsmeta_schema.h:334
NvDsEventMsgMeta::moduleId
gint moduleId
Holds the ID of the analytics module that generated the event.
Definition: nvdsmeta_schema.h:395
NvDsRect::left
float left
Holds the position of rectangle's left side in pixels.
Definition: nvdsmeta_schema.h:107
NvDsObjectType
NvDsObjectType
Defines object type flags.
Definition: nvdsmeta_schema.h:63
NvDsEmbedding
struct NvDsEmbedding NvDsEmbedding
Holds an embedding model's parameters.
NvDsVehicleObjectExt::model
gchar * model
Holds a pointer to the model of the vehicle.
Definition: nvdsmeta_schema.h:197
NvDsJoints::joints
NvDsJoint * joints
Holds the joints of the person.
Definition: nvdsmeta_schema.h:252
NVDS_EVENT_ENTRY
@ NVDS_EVENT_ENTRY
Definition: nvdsmeta_schema.h:44
NVDS_PAYLOAD_RESERVED
@ NVDS_PAYLOAD_RESERVED
Reserved for future use.
Definition: nvdsmeta_schema.h:95
NvDsJoint
Holds a joint's position and confidence.
Definition: nvdsmeta_schema.h:241
NVDS_EVENT_RESERVED
@ NVDS_EVENT_RESERVED
Reserved for future use.
Definition: nvdsmeta_schema.h:54
_NvDsBbox3dObjectList
Definition: nvdsmeta_schema.h:308
NvDsCongestionObject::amount
float amount
Definition: nvdsmeta_schema.h:346
NvDsConvexHull::numFilled
guint numFilled
Holds the number of points in the convex hull.
Definition: nvdsmeta_schema.h:281
NvDsFaceObjectWithExt::glasses
gchar * glasses
Holds a pointer to the type of glasses the person is wearing, if any.
Definition: nvdsmeta_schema.h:228
NvDsEventMsgMeta::singleView3DTracking
NvDs3DTracking singleView3DTracking
Holds the single view 3D tracking metadata if available.
Definition: nvdsmeta_schema.h:441
NvDsEventMsgMeta::componentId
gint componentId
Holds the ID of the component (plugin) that generated this event.
Definition: nvdsmeta_schema.h:399
NvDsTypeMetricsObject::num_objectIds
guint num_objectIds
Definition: nvdsmeta_schema.h:358
NvDsVehicleObjectExt::region
gchar * region
Holds a pointer to the region of the vehicle.
Definition: nvdsmeta_schema.h:199
NvDsEventMsgMeta::num_fov
gint num_fov
Definition: nvdsmeta_schema.h:421
NvDsJoint::z
float z
Holds the joint z position in pixels.
Definition: nvdsmeta_schema.h:244
NVDS_EVENT_MOVING
@ NVDS_EVENT_MOVING
Definition: nvdsmeta_schema.h:46
NvDsPersonObjectExt::cap
gchar * cap
Holds a pointer to the type of cap the person is wearing, if any.
Definition: nvdsmeta_schema.h:211
NvDsFaceObject::eyecolor
gchar * eyecolor
Holds a pointer to the person's eye color.
Definition: nvdsmeta_schema.h:187
NvDsLLMObject
Definition: nvdsmeta_schema.h:323
NvDsPersonObjectExt::mask
GList * mask
Holds a list of polygons for person mask.
Definition: nvdsmeta_schema.h:217
NvDsTypeMetricsObject
Definition: nvdsmeta_schema.h:351
NvDsInteractionObject::id
gchar * id
Definition: nvdsmeta_schema.h:332
NvDsCongestionObject::num_objectIds
guint num_objectIds
Definition: nvdsmeta_schema.h:345
_NvDsEvent
Holds event information.
Definition: nvdsmeta_schema.h:447
NvDsBbox3dObjectList
struct _NvDsBbox3dObjectList NvDsBbox3dObjectList
NvDsCongestionObject::id
gchar * id
Definition: nvdsmeta_schema.h:343
NvDsPayloadType
NvDsPayloadType
Defines payload type flags.
Definition: nvdsmeta_schema.h:89
NVDS_OBJECT_TYPE_FACE_EXT
@ NVDS_OBJECT_TYPE_FACE_EXT
Definition: nvdsmeta_schema.h:72
NvDsEventMsgMeta::confidence
gdouble confidence
Holds the confidence level of the inference.
Definition: nvdsmeta_schema.h:403
NVDS_EVENT_EMPTY
@ NVDS_EVENT_EMPTY
Definition: nvdsmeta_schema.h:48
NvDsObjectSignature
Holds an object's signature.
Definition: nvdsmeta_schema.h:133
NvDsFaceObjectWithExt::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:233
NvDsFaceObjectWithExt::facialhair
gchar * facialhair
Holds a pointer to the person's facial hair color.
Definition: nvdsmeta_schema.h:230
NvDsEventMsgMeta::trackingId
guint64 trackingId
Holds the object's tracking ID.
Definition: nvdsmeta_schema.h:405
_NvDsBbox3dObjectList::frame_num
gint frame_num
Definition: nvdsmeta_schema.h:312
NvDsGeoLocation
struct NvDsGeoLocation NvDsGeoLocation
Holds geolocation parameters.
_NvDsCustomMsgInfo
Holds data for any user defined custom message to be attached to the payload message : custom message...
Definition: nvdsmeta_schema.h:459
NvDsInteractionObject::info
GHashTable * info
Definition: nvdsmeta_schema.h:338
NvDsProductObjectExt::brand
gchar * brand
Holds the product brand.
Definition: nvdsmeta_schema.h:144
NvDsPersonObjectExt::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:210
NvDsRect::height
float height
Holds the rectangle's height in pixels.
Definition: nvdsmeta_schema.h:109
NvDsJoint
struct NvDsJoint NvDsJoint
Holds a joint's position and confidence.
NvDsEventMsgMeta::embedding
NvDsEmbedding embedding
Holds the object's embedding information.
Definition: nvdsmeta_schema.h:437
NvDsGeoLocation::lat
gdouble lat
Holds the location's latitude.
Definition: nvdsmeta_schema.h:116
NvDsProductObject
struct NvDsProductObject NvDsProductObject
Holds a product object's parameters.
NvDsProductObjectExt::type
gchar * type
Holds the product type.
Definition: nvdsmeta_schema.h:145
NVDS_OBEJCT_TYPE_FORCE32
@ NVDS_OBEJCT_TYPE_FORCE32
Definition: nvdsmeta_schema.h:83
NvDsEventMsgMeta::location
NvDsGeoLocation location
Holds the object's geolocation.
Definition: nvdsmeta_schema.h:385
NvDsEventMsgMeta::segmentation
NvDsSegmentationObject * segmentation
Definition: nvdsmeta_schema.h:423
NvDsTypeMetricsObject::id
gchar * id
Definition: nvdsmeta_schema.h:352
NVDS_PAYLOAD_CUSTOM
@ NVDS_PAYLOAD_CUSTOM
Specifies a custom payload.
Definition: nvdsmeta_schema.h:98
NvDsCongestionObject::timestamp
gint64 timestamp
Definition: nvdsmeta_schema.h:348
NvDsConvexHull
Holds 2D convex hull metadata.
Definition: nvdsmeta_schema.h:277
_NvDsBbox3dObject::labels_3d
guint64 labels_3d
Definition: nvdsmeta_schema.h:301
NvDsPersonObject::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:167
NvDsVehicleObject::make
gchar * make
Holds a pointer to the make of the vehicle.
Definition: nvdsmeta_schema.h:155
_NvDsBbox3dObject::cls_scores
float cls_scores
Definition: nvdsmeta_schema.h:302
NvDsCongestionObject::info
GHashTable * info
Definition: nvdsmeta_schema.h:347
NVDS_OBJECT_TYPE_PRODUCT
@ NVDS_OBJECT_TYPE_PRODUCT
Definition: nvdsmeta_schema.h:74
NvDsJoint::x
float x
Holds the joint x position in pixels.
Definition: nvdsmeta_schema.h:242
NVDS_OBJECT_TYPE_ROADSIGN
@ NVDS_OBJECT_TYPE_ROADSIGN
Definition: nvdsmeta_schema.h:69
NvDsEventMsgMeta::interactions
NvDsInteractionObject * interactions
Definition: nvdsmeta_schema.h:418
NvDsObjectSignature::size
guint size
Holds the number of signature values in signature.
Definition: nvdsmeta_schema.h:137
NvDsTypeMetricsObject::count
gint32 count
Definition: nvdsmeta_schema.h:354
_NvDsCustomMsgInfo::size
guint size
Definition: nvdsmeta_schema.h:461
_NvDsBbox3dObjectList::timestamp
guint64 timestamp
Definition: nvdsmeta_schema.h:311
NvDsProductObjectExt::shape
gchar * shape
Holds the product shape.
Definition: nvdsmeta_schema.h:146
NvDsFaceObjectWithExt::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:225
NvDsPersonObjectExt::apparel
gchar * apparel
Holds a pointer to a description of the person's apparel.
Definition: nvdsmeta_schema.h:213
NvDsEventMsgMeta::placeId
gint placeId
Holds the ID of the place related to the object.
Definition: nvdsmeta_schema.h:397
NVDS_EVENT_EXIT
@ NVDS_EVENT_EXIT
Definition: nvdsmeta_schema.h:45
NVDS_OBJECT_TYPE_VEHICLE
@ NVDS_OBJECT_TYPE_VEHICLE
Definition: nvdsmeta_schema.h:64
NvDsSegmentationObject::info
GHashTable * info
Definition: nvdsmeta_schema.h:365
NvDs3DTracking::ptWorldFeet
gfloat ptWorldFeet[2]
Holds the object's estimated foot location in 2D coordinates on the estimated world ground.
Definition: nvdsmeta_schema.h:289
NvDsPayload::payloadSize
guint payloadSize
Holds the size of the payload.
Definition: nvdsmeta_schema.h:471
NvDsVehicleObjectExt
struct NvDsVehicleObjectExt NvDsVehicleObjectExt
Holds a vehicle object's parameters.
NvDsTypeMetricsObject::type
gchar * type
Definition: nvdsmeta_schema.h:353
NvDsEventMsgMeta::num_congestions
gint num_congestions
Definition: nvdsmeta_schema.h:419
NVDS_PAYLOAD_DEEPSTREAM
@ NVDS_PAYLOAD_DEEPSTREAM
Definition: nvdsmeta_schema.h:90
NvDsEventMsgMeta
Holds event message meta data.
Definition: nvdsmeta_schema.h:377
NvDs3DTracking::convexHull
NvDsConvexHull convexHull
Holds the object's convex hull information.
Definition: nvdsmeta_schema.h:295
NVDS_OBJECT_TYPE_FACE
@ NVDS_OBJECT_TYPE_FACE
Definition: nvdsmeta_schema.h:66
_NvDsBbox3dObjectList::camera_id
guint camera_id
Definition: nvdsmeta_schema.h:313
NvDsPersonObjectExt::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:209
NvDs3DTracking::ptImgFeet
gfloat ptImgFeet[2]
Holds the object's estimated foot location in frame coordinates.
Definition: nvdsmeta_schema.h:291
NvDsCongestionObject::objectIds
gchar ** objectIds
Definition: nvdsmeta_schema.h:344
NVDS_OBJECT_TYPE_BAG
@ NVDS_OBJECT_TYPE_BAG
Definition: nvdsmeta_schema.h:67
NvDsLLMObject::embeddings
NvDsEmbedding * embeddings
Definition: nvdsmeta_schema.h:327
NvDsVehicleObject::model
gchar * model
Holds a pointer to the model of the vehicle.
Definition: nvdsmeta_schema.h:156
NvDsEventMsgMeta::pose
NvDsJoints pose
Holds the object's pose information.
Definition: nvdsmeta_schema.h:435
NvDsPayload::payload
gpointer payload
Holds a pointer to the payload.
Definition: nvdsmeta_schema.h:469
NvDsFaceObjectWithExt::mask
GList * mask
Holds a list of polygons for face mask.
Definition: nvdsmeta_schema.h:235
NvDsTypeMetricsObject::info
GHashTable * info
Definition: nvdsmeta_schema.h:359
NvDsRect::width
float width
Holds the rectangle's width in pixels.
Definition: nvdsmeta_schema.h:108
NvDsVehicleObject::type
gchar * type
Holds a pointer to the type of the vehicle.
Definition: nvdsmeta_schema.h:154
_NvDsBbox3dObject::scores_3d
float scores_3d
Definition: nvdsmeta_schema.h:300
NvDsLLMObject::num_embeddings
guint num_embeddings
Definition: nvdsmeta_schema.h:328
NVDS_OBJECT_TYPE_UNKNOWN
@ NVDS_OBJECT_TYPE_UNKNOWN
"object" key will be missing in the schema
Definition: nvdsmeta_schema.h:82
NvDs3DTracking
struct NvDs3DTracking NvDs3DTracking
Holds Single View 3D Tracking metadata.
NVDS_OBJECT_TYPE_PERSON_EXT
@ NVDS_OBJECT_TYPE_PERSON_EXT
Definition: nvdsmeta_schema.h:71
NvDsPersonObject
struct NvDsPersonObject NvDsPersonObject
Holds a person object's parameters.
NvDsEventMsgMeta::has3DTracking
bool has3DTracking
Holds the flag for whether single view 3D tracking metadata is available.
Definition: nvdsmeta_schema.h:439
NvDsVehicleObjectExt::color
gchar * color
Holds a pointer to the color of the vehicle.
Definition: nvdsmeta_schema.h:198
NvDsInteractionObject::num_coordinates
guint num_coordinates
Definition: nvdsmeta_schema.h:336
NvDsEventMsgMeta::sensorStr
gchar * sensorStr
Holds a pointer to a string containing the sensor's identity.
Definition: nvdsmeta_schema.h:411
NvDsRect::top
float top
Holds the position of rectangle's top in pixels.
Definition: nvdsmeta_schema.h:106
NvDsPersonObject::cap
gchar * cap
Holds a pointer to the type of cap the person is wearing, if any.
Definition: nvdsmeta_schema.h:168
NvDsEventMsgMeta::sensorId
gint sensorId
Holds the ID of the sensor that generated the event.
Definition: nvdsmeta_schema.h:393
NvDsVehicleObject::license
gchar * license
Holds a pointer to the license number of the vehicle.
Definition: nvdsmeta_schema.h:159
NvDsProductObjectExt
Holds a product object's parameters.
Definition: nvdsmeta_schema.h:143
NVDS_EVENT_STOPPED
@ NVDS_EVENT_STOPPED
Definition: nvdsmeta_schema.h:47
_NvDsBbox3dObject::boxes_3d
float boxes_3d[10]
Definition: nvdsmeta_schema.h:299
NvDsEventMsgMeta::fov
NvDsTypeMetricsObject * fov
Definition: nvdsmeta_schema.h:422
NvDsSegmentationObject
Definition: nvdsmeta_schema.h:362
NvDsPersonObjectExt::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:215
NvDsSegmentationObject::mask_size
guint mask_size
Definition: nvdsmeta_schema.h:364
NvDsPersonObjectExt
Holds a person object's parameters.
Definition: nvdsmeta_schema.h:208
NVDS_PAYLOAD_DEEPSTREAM_PROTOBUF
@ NVDS_PAYLOAD_DEEPSTREAM_PROTOBUF
Definition: nvdsmeta_schema.h:92
NvDsCoordinate
Hold a coordinate's position.
Definition: nvdsmeta_schema.h:124
NvDsProductObject::type
gchar * type
Holds the product type.
Definition: nvdsmeta_schema.h:270
_NvDsBbox3dObjectList::sensorStr
gchar * sensorStr
Definition: nvdsmeta_schema.h:314
NvDsEmbedding::embedding_vector
float * embedding_vector
Holds the embedding vector.
Definition: nvdsmeta_schema.h:261
NvDsJoints::pose_type
int pose_type
Holds the type of pose 0 - 2D, 1 - 3D , integer to support 2.5D in future.
Definition: nvdsmeta_schema.h:254
NvDsFaceObjectWithExt::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:224
NvDsGeoLocation::alt
gdouble alt
Holds the location's altitude.
Definition: nvdsmeta_schema.h:118
NvDsEventMsgMeta::objType
NvDsObjectType objType
Holds the object's type.
Definition: nvdsmeta_schema.h:381
NvDsProductObject::shape
gchar * shape
Holds the product shape.
Definition: nvdsmeta_schema.h:271
NVDS_OBJECT_TYPE_BICYCLE
@ NVDS_OBJECT_TYPE_BICYCLE
Definition: nvdsmeta_schema.h:68
NvDsEventMsgMeta::objSignature
NvDsObjectSignature objSignature
Holds the object's signature.
Definition: nvdsmeta_schema.h:389
NvDsFaceObject
struct NvDsFaceObject NvDsFaceObject
Holds a face object's parameters.
NvDsJoints::num_joints
int num_joints
Holds the number of joints.
Definition: nvdsmeta_schema.h:253
NvDsEventMsgMeta::type
NvDsEventType type
Holds the event's type.
Definition: nvdsmeta_schema.h:379
NvDsInteractionObject::objectIds
gchar ** objectIds
Definition: nvdsmeta_schema.h:333
NvDsObjectSignature::signature
gdouble * signature
Holds a pointer to an array of signature values.
Definition: nvdsmeta_schema.h:135
NvDsVehicleObject::color
gchar * color
Holds a pointer to the color of the vehicle.
Definition: nvdsmeta_schema.h:157
NvDsFaceObjectWithExt::eyecolor
gchar * eyecolor
Holds a pointer to the person's eye color.
Definition: nvdsmeta_schema.h:232
NvDsEventMsgMeta::otherAttrs
gchar * otherAttrs
Definition: nvdsmeta_schema.h:425
NvDsSegmentationObject::mask
gint32 * mask
Definition: nvdsmeta_schema.h:363
NvDsJoint::y
float y
Holds the joint y position in pixels.
Definition: nvdsmeta_schema.h:243
NvDsFaceObject::name
gchar * name
Holds a pointer to the person's name.
Definition: nvdsmeta_schema.h:186
NvDsVehicleObject
struct NvDsVehicleObject NvDsVehicleObject
Holds a vehicle object's parameters.
NvDsVehicleObjectExt::type
gchar * type
Holds a pointer to the type of the vehicle.
Definition: nvdsmeta_schema.h:195
NvDsPersonObject::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:166
NvDsProductObjectExt
struct NvDsProductObjectExt NvDsProductObjectExt
Holds a product object's parameters.
NvDsJoint::confidence
float confidence
Holds the confidence of the joint.
Definition: nvdsmeta_schema.h:245
NvDsEvent
struct _NvDsEvent NvDsEvent
Holds event information.
NvDsEventMsgMeta::ts
gchar * ts
Holds a pointer to the generated event's timestamp.
Definition: nvdsmeta_schema.h:407
_NvDsBbox3dObject::instance_ids
guint instance_ids
Definition: nvdsmeta_schema.h:303
NVDS_EVENT_CUSTOM
@ NVDS_EVENT_CUSTOM
Specifies a custom event.
Definition: nvdsmeta_schema.h:56
NvDsGeoLocation
Holds geolocation parameters.
Definition: nvdsmeta_schema.h:115
NvDsPersonObject::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:172
_NvDsBbox3dObjectList::num_objects
guint num_objects
Definition: nvdsmeta_schema.h:310
NvDsEventMsgMeta::bbox3d
NvDsBbox3dObject * bbox3d
Holds a pointer to a string containing other attributes associated with the object.
Definition: nvdsmeta_schema.h:415
NvDsFaceObject::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:179
NvDsConvexHull::points
gint * points
Holds a pointer a list of convex hull points.
Definition: nvdsmeta_schema.h:279
NvDsEventMsgMeta
struct NvDsEventMsgMeta NvDsEventMsgMeta
Holds event message meta data.
NvDsCoordinate::y
gdouble y
Holds the coordinate's Y position.
Definition: nvdsmeta_schema.h:126
NvDsFaceObject::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:180
NVDS_OBJECT_TYPE_3D
@ NVDS_OBJECT_TYPE_3D
Definition: nvdsmeta_schema.h:73
NvDsGeoLocation::lon
gdouble lon
Holds the location's longitude.
Definition: nvdsmeta_schema.h:117
NvDsVehicleObjectExt::license
gchar * license
Holds a pointer to the license number of the vehicle.
Definition: nvdsmeta_schema.h:200
NvDsFaceObjectExt
struct NvDsFaceObjectWithExt NvDsFaceObjectExt
Holds a face object's parameters.
NvDsVehicleObjectExt::make
gchar * make
Holds a pointer to the make of the vehicle.
Definition: nvdsmeta_schema.h:196
NvDsEventMsgMeta::frameId
gint frameId
Holds the video frame ID of this event.
Definition: nvdsmeta_schema.h:401
NvDsEventMsgMeta::num_interactions
gint num_interactions
Definition: nvdsmeta_schema.h:417
NVDS_OBJECT_TYPE_CUSTOM
@ NVDS_OBJECT_TYPE_CUSTOM
Specifies a custom object.
Definition: nvdsmeta_schema.h:80
NvDsInteractionObject::coordinates
NvDsCoordinate * coordinates
Definition: nvdsmeta_schema.h:335
NvDsCoordinate::z
gdouble z
Holds the coordinate's Z position.
Definition: nvdsmeta_schema.h:127
NvDsVehicleObject
Holds a vehicle object's parameters.
Definition: nvdsmeta_schema.h:153
NvDsPersonObject::apparel
gchar * apparel
Holds a pointer to a description of the person's apparel.
Definition: nvdsmeta_schema.h:170
NvDs3DTracking
Holds Single View 3D Tracking metadata.
Definition: nvdsmeta_schema.h:287
NvDsFaceObject::cap
gchar * cap
Holds a pointer to the type of cap the person is wearing, if any.
Definition: nvdsmeta_schema.h:181
NvDsJoints
Holds a body pose's joint points.
Definition: nvdsmeta_schema.h:251
NvDsFaceObject
Holds a face object's parameters.
Definition: nvdsmeta_schema.h:178
NvDsEventMsgMeta::congestions
NvDsCongestionObject * congestions
Definition: nvdsmeta_schema.h:420
NvDsTypeMetricsObject::num_coordinates
guint num_coordinates
Definition: nvdsmeta_schema.h:356
NvDsConversationObject::id
gchar * id
Definition: nvdsmeta_schema.h:318
MAX_NUM_OBJECTS
#define MAX_NUM_OBJECTS
Definition: nvdsmeta_schema.h:307
NvDsInteractionObject
Definition: nvdsmeta_schema.h:331
NvDsPersonObjectExt
struct NvDsPersonObjectExt NvDsPersonObjectExt
Holds a person object's parameters.
_NvDsEvent::metadata
NvDsEventMsgMeta * metadata
Holds a pointer to event metadata.
Definition: nvdsmeta_schema.h:451
NvDsInteractionObject::description
gchar * description
Definition: nvdsmeta_schema.h:337
_NvDsBbox3dObjectList::objects
NvDsBbox3dObject objects[MAX_NUM_OBJECTS]
Definition: nvdsmeta_schema.h:309
NvDsPayload
struct NvDsPayload NvDsPayload
Holds payload metadata.
_NvDsBbox3dObject::instance_feats
NvDsEmbedding * instance_feats
Definition: nvdsmeta_schema.h:304
NvDsCoordinate::x
gdouble x
Holds the coordinate's X position.
Definition: nvdsmeta_schema.h:125
NvDsVehicleObjectExt::mask
GList * mask
Holds a list of polygons for vehicle mask.
Definition: nvdsmeta_schema.h:202
NvDsEventType
NvDsEventType
Defines event type flags.
Definition: nvdsmeta_schema.h:43
NvDsLLMObject::info
GHashTable * info
Definition: nvdsmeta_schema.h:324
NVDS_PAYLOAD_FORCE32
@ NVDS_PAYLOAD_FORCE32
Definition: nvdsmeta_schema.h:99
NvDsConversationObject::query
gchar * query
Definition: nvdsmeta_schema.h:319
_NvDsCustomMsgInfo::message
void * message
Definition: nvdsmeta_schema.h:460
NvDsFaceObjectWithExt
Holds a face object's parameters.
Definition: nvdsmeta_schema.h:223
NvDsEventMsgMeta::coordinate
NvDsCoordinate coordinate
Holds the object's coordinates.
Definition: nvdsmeta_schema.h:387
NvDsEventMsgMeta::objClassId
gint objClassId
Holds the object's class ID.
Definition: nvdsmeta_schema.h:391
NvDsConversationObject::response
gchar * response
Definition: nvdsmeta_schema.h:320
NvDsEventMsgMeta::extMsgSize
guint extMsgSize
Holds the size of the custom object at extMsg.
Definition: nvdsmeta_schema.h:433
NvDsRect
Holds a rectangle's position and size.
Definition: nvdsmeta_schema.h:105
NVDS_OBJECT_TYPE_RESERVED
@ NVDS_OBJECT_TYPE_RESERVED
New Object Type for Product.
Definition: nvdsmeta_schema.h:78
NvDsTypeMetricsObject::coordinates
NvDsCoordinate * coordinates
Definition: nvdsmeta_schema.h:355
NvDsEventMsgMeta::bbox
NvDsRect bbox
Holds the object's bounding box.
Definition: nvdsmeta_schema.h:383
NvDsVehicleObject::region
gchar * region
Holds a pointer to the region of the vehicle.
Definition: nvdsmeta_schema.h:158
NvDsBbox3dObject
struct _NvDsBbox3dObject NvDsBbox3dObject
_NvDsBbox3dObject
Definition: nvdsmeta_schema.h:298
NvDsVehicleObjectExt
Holds a vehicle object's parameters.
Definition: nvdsmeta_schema.h:194
_NvDsEvent::eventType
NvDsEventType eventType
Holds the type of event.
Definition: nvdsmeta_schema.h:449
NvDsCoordinate
struct NvDsCoordinate NvDsCoordinate
Hold a coordinate's position.
NvDsObjectSignature
struct NvDsObjectSignature NvDsObjectSignature
Holds an object's signature.
NVDS_EVENT_RESET
@ NVDS_EVENT_RESET
Definition: nvdsmeta_schema.h:50
NvDsJoints
struct NvDsJoints NvDsJoints
Holds a body pose's joint points.
NvDsInteractionObject::timestamp
gint64 timestamp
Definition: nvdsmeta_schema.h:339