NVIDIA DeepStream SDK API Reference

7.0 Release
nvdsmeta_schema.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2018-2022 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 {
84 
88 typedef enum NvDsPayloadType {
98  NVDS_PAYLOAD_FORCE32 = 0x7FFFFFFF
100 
104 typedef struct NvDsRect {
105  float top;
106  float left;
107  float width;
108  float height;
109 } NvDsRect;
110 
114 typedef struct NvDsGeoLocation {
115  gdouble lat;
116  gdouble lon;
117  gdouble alt;
119 
123 typedef struct NvDsCoordinate {
124  gdouble x;
125  gdouble y;
126  gdouble z;
128 
132 typedef struct NvDsObjectSignature {
134  gdouble *signature;
136  guint size;
138 
142 typedef struct NvDsProductObjectExt {
143  gchar *brand;
144  gchar *type;
145  gchar *shape;
146  GList *mask;
148 
152 typedef struct NvDsVehicleObject {
153  gchar *type;
154  gchar *make;
155  gchar *model;
156  gchar *color;
157  gchar *region;
158  gchar *license;
160 
164 typedef struct NvDsPersonObject {
165  gchar *gender;
166  gchar *hair;
167  gchar *cap;
169  gchar *apparel;
171  guint age;
173 
177 typedef struct NvDsFaceObject {
178  gchar *gender;
179  gchar *hair;
180  gchar *cap;
182  gchar *glasses;
184  gchar *facialhair;
185  gchar *name;
186  gchar *eyecolor;
187  guint age;
189 
193 typedef struct NvDsVehicleObjectExt {
194  gchar *type;
195  gchar *make;
196  gchar *model;
197  gchar *color;
198  gchar *region;
199  gchar *license;
201  GList *mask;
203 
207 typedef struct NvDsPersonObjectExt {
208  gchar *gender;
209  gchar *hair;
210  gchar *cap;
212  gchar *apparel;
214  guint age;
216  GList *mask;
218 
222 typedef struct NvDsFaceObjectWithExt {
223  gchar *gender;
224  gchar *hair;
225  gchar *cap;
227  gchar *glasses;
229  gchar *facialhair;
230  gchar *name;
231  gchar *eyecolor;
232  guint age;
234  GList *mask;
236 
240 typedef struct NvDsJoint {
241  float x;
242  float y;
243  float z;
244  float confidence;
245 } NvDsJoint;
246 
250 typedef struct NvDsJoints {
253  int pose_type;
254 } NvDsJoints;
255 
259 typedef struct NvDsEmbedding {
262 } NvDsEmbedding;
263 
267 typedef struct NvDsProductObject {
268  gchar *brand;
269  gchar *type;
270  gchar *shape;
272 
276 typedef struct NvDsConvexHull {
278  gint* points;
280  guint numFilled;
282 
286 typedef struct NvDs3DTracking {
288  gfloat ptWorldFeet[2];
290  gfloat ptImgFeet[2];
292  gfloat visibility;
296 
306 typedef struct NvDsEventMsgMeta {
322  gint sensorId;
324  gint moduleId;
326  gint placeId;
330  gint frameId;
332  gdouble confidence;
334  guint64 trackingId;
336  gchar *ts;
338  gchar *objectId;
340  gchar *sensorStr;
343  gchar *otherAttrs;
345  gchar *videoPath;
349  gpointer extMsg;
351  guint extMsgSize;
361 
365 typedef struct _NvDsEvent {
370 } NvDsEvent;
371 
377 typedef struct _NvDsCustomMsgInfo {
378  void *message;
379  guint size;
381 
385 typedef struct NvDsPayload {
387  gpointer payload;
389  guint payloadSize;
392  guint componentId;
393 } NvDsPayload;
394 
395 #ifdef __cplusplus
396 }
397 #endif
398 #endif /* NVDSMETA_H_ */
399 
NvDsPersonObject
Holds a person object's parameters.
Definition: nvdsmeta_schema.h:164
NvDs3DTracking::visibility
gfloat visibility
Holds the object's visibility.
Definition: nvdsmeta_schema.h:292
NvDsEventMsgMeta::videoPath
gchar * videoPath
Holds a pointer to the name of the video file.
Definition: nvdsmeta_schema.h:345
NvDsEventMsgMeta::objectId
gchar * objectId
Holds a pointer to the detected or inferred object's ID.
Definition: nvdsmeta_schema.h:338
NvDsFaceObject::glasses
gchar * glasses
Holds a pointer to the type of glasses the person is wearing, if any.
Definition: nvdsmeta_schema.h:182
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:385
NvDsEventMsgMeta::extMsg
gpointer extMsg
Holds a pointer to event message meta data.
Definition: nvdsmeta_schema.h:349
NvDsProductObject
Holds a product object's parameters.
Definition: nvdsmeta_schema.h:267
NvDsFaceObject::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:187
NVDS_EVENT_FORCE32
@ NVDS_EVENT_FORCE32
Definition: nvdsmeta_schema.h:57
NvDsProductObject::brand
gchar * brand
Holds the product brand.
Definition: nvdsmeta_schema.h:268
NvDsProductObjectExt::mask
GList * mask
Definition: nvdsmeta_schema.h:146
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:392
NvDsEmbedding::embedding_length
guint embedding_length
Holds the length of embedding vector.
Definition: nvdsmeta_schema.h:261
NvDsFaceObjectWithExt::name
gchar * name
Holds a pointer to the person's name.
Definition: nvdsmeta_schema.h:230
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:184
NVDS_OBJECT_TYPE_PRODUCT_EXT
@ NVDS_OBJECT_TYPE_PRODUCT_EXT
New Object Type for Product.
Definition: nvdsmeta_schema.h:74
NvDsEmbedding
Holds an embedding model's parameters.
Definition: nvdsmeta_schema.h:259
NVDS_EVENT_PARKED
@ NVDS_EVENT_PARKED
Definition: nvdsmeta_schema.h:49
NVDS_PAYLOAD_DEEPSTREAM_MINIMAL
@ NVDS_PAYLOAD_DEEPSTREAM_MINIMAL
Definition: nvdsmeta_schema.h:90
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:225
NvDsEventMsgMeta::moduleId
gint moduleId
Holds the ID of the analytics module that generated the event.
Definition: nvdsmeta_schema.h:324
NvDsRect::left
float left
Holds the position of rectangle's left side in pixels.
Definition: nvdsmeta_schema.h:106
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:196
NvDsJoints::joints
NvDsJoint * joints
Holds the joints of the person.
Definition: nvdsmeta_schema.h:251
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:94
NvDsJoint
Holds a joint's position and confidence.
Definition: nvdsmeta_schema.h:240
NVDS_EVENT_RESERVED
@ NVDS_EVENT_RESERVED
Reserved for future use.
Definition: nvdsmeta_schema.h:54
NvDsConvexHull::numFilled
guint numFilled
Holds the number of points in the convex hull.
Definition: nvdsmeta_schema.h:280
NvDsFaceObjectWithExt::glasses
gchar * glasses
Holds a pointer to the type of glasses the person is wearing, if any.
Definition: nvdsmeta_schema.h:227
NvDsEventMsgMeta::singleView3DTracking
NvDs3DTracking singleView3DTracking
Holds the single view 3D tracking metadata if available.
Definition: nvdsmeta_schema.h:359
NvDsEventMsgMeta::componentId
gint componentId
Holds the ID of the component (plugin) that generated this event.
Definition: nvdsmeta_schema.h:328
NvDsVehicleObjectExt::region
gchar * region
Holds a pointer to the region of the vehicle.
Definition: nvdsmeta_schema.h:198
NvDsJoint::z
float z
Holds the joint z position in pixels.
Definition: nvdsmeta_schema.h:243
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:210
NvDsFaceObject::eyecolor
gchar * eyecolor
Holds a pointer to the person's eye color.
Definition: nvdsmeta_schema.h:186
NvDsPersonObjectExt::mask
GList * mask
Holds a list of polygons for person mask.
Definition: nvdsmeta_schema.h:216
_NvDsEvent
Holds event information.
Definition: nvdsmeta_schema.h:365
NvDsPayloadType
NvDsPayloadType
Defines payload type flags.
Definition: nvdsmeta_schema.h:88
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:332
NVDS_EVENT_EMPTY
@ NVDS_EVENT_EMPTY
Definition: nvdsmeta_schema.h:48
NvDsObjectSignature
Holds an object's signature.
Definition: nvdsmeta_schema.h:132
NvDsFaceObjectWithExt::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:232
NvDsFaceObjectWithExt::facialhair
gchar * facialhair
Holds a pointer to the person's facial hair color.
Definition: nvdsmeta_schema.h:229
NvDsEventMsgMeta::trackingId
guint64 trackingId
Holds the object's tracking ID.
Definition: nvdsmeta_schema.h:334
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:377
NvDsProductObjectExt::brand
gchar * brand
Holds the product brand.
Definition: nvdsmeta_schema.h:143
NvDsPersonObjectExt::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:209
NvDsRect::height
float height
Holds the rectangle's height in pixels.
Definition: nvdsmeta_schema.h:108
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:355
NvDsGeoLocation::lat
gdouble lat
Holds the location's latitude.
Definition: nvdsmeta_schema.h:115
NvDsProductObject
struct NvDsProductObject NvDsProductObject
Holds a product object's parameters.
NvDsProductObjectExt::type
gchar * type
Holds the product type.
Definition: nvdsmeta_schema.h:144
NVDS_OBEJCT_TYPE_FORCE32
@ NVDS_OBEJCT_TYPE_FORCE32
Definition: nvdsmeta_schema.h:82
NvDsEventMsgMeta::location
NvDsGeoLocation location
Holds the object's geolocation.
Definition: nvdsmeta_schema.h:314
NVDS_PAYLOAD_CUSTOM
@ NVDS_PAYLOAD_CUSTOM
Specifies a custom payload.
Definition: nvdsmeta_schema.h:97
NvDsConvexHull
Holds 2D convex hull metadata.
Definition: nvdsmeta_schema.h:276
NvDsPersonObject::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:166
NvDsVehicleObject::make
gchar * make
Holds a pointer to the make of the vehicle.
Definition: nvdsmeta_schema.h:154
NVDS_OBJECT_TYPE_PRODUCT
@ NVDS_OBJECT_TYPE_PRODUCT
Definition: nvdsmeta_schema.h:73
NvDsJoint::x
float x
Holds the joint x position in pixels.
Definition: nvdsmeta_schema.h:241
NVDS_OBJECT_TYPE_ROADSIGN
@ NVDS_OBJECT_TYPE_ROADSIGN
Definition: nvdsmeta_schema.h:69
NvDsObjectSignature::size
guint size
Holds the number of signature values in signature.
Definition: nvdsmeta_schema.h:136
_NvDsCustomMsgInfo::size
guint size
Definition: nvdsmeta_schema.h:379
NvDsProductObjectExt::shape
gchar * shape
Holds the product shape.
Definition: nvdsmeta_schema.h:145
NvDsFaceObjectWithExt::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:224
NvDsPersonObjectExt::apparel
gchar * apparel
Holds a pointer to a description of the person's apparel.
Definition: nvdsmeta_schema.h:212
NvDsEventMsgMeta::placeId
gint placeId
Holds the ID of the place related to the object.
Definition: nvdsmeta_schema.h:326
NVDS_EVENT_EXIT
@ NVDS_EVENT_EXIT
Definition: nvdsmeta_schema.h:45
NVDS_OBJECT_TYPE_VEHICLE
@ NVDS_OBJECT_TYPE_VEHICLE
Definition: nvdsmeta_schema.h:64
NvDs3DTracking::ptWorldFeet
gfloat ptWorldFeet[2]
Holds the object's estimated foot location in 2D coordinates on the estimated world ground.
Definition: nvdsmeta_schema.h:288
NvDsPayload::payloadSize
guint payloadSize
Holds the size of the payload.
Definition: nvdsmeta_schema.h:389
NvDsVehicleObjectExt
struct NvDsVehicleObjectExt NvDsVehicleObjectExt
Holds a vehicle object's parameters.
NVDS_PAYLOAD_DEEPSTREAM
@ NVDS_PAYLOAD_DEEPSTREAM
Definition: nvdsmeta_schema.h:89
NvDsEventMsgMeta
Holds event message meta data.
Definition: nvdsmeta_schema.h:306
NvDs3DTracking::convexHull
NvDsConvexHull convexHull
Holds the object's convex hull information.
Definition: nvdsmeta_schema.h:294
NVDS_OBJECT_TYPE_FACE
@ NVDS_OBJECT_TYPE_FACE
Definition: nvdsmeta_schema.h:66
NvDsPersonObjectExt::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:208
NvDs3DTracking::ptImgFeet
gfloat ptImgFeet[2]
Holds the object's estimated foot location in frame coordinates.
Definition: nvdsmeta_schema.h:290
NVDS_OBJECT_TYPE_BAG
@ NVDS_OBJECT_TYPE_BAG
Definition: nvdsmeta_schema.h:67
NvDsVehicleObject::model
gchar * model
Holds a pointer to the model of the vehicle.
Definition: nvdsmeta_schema.h:155
NvDsEventMsgMeta::pose
NvDsJoints pose
Holds the object's pose information.
Definition: nvdsmeta_schema.h:353
NvDsPayload::payload
gpointer payload
Holds a pointer to the payload.
Definition: nvdsmeta_schema.h:387
NvDsFaceObjectWithExt::mask
GList * mask
Holds a list of polygons for face mask.
Definition: nvdsmeta_schema.h:234
NvDsRect::width
float width
Holds the rectangle's width in pixels.
Definition: nvdsmeta_schema.h:107
NvDsVehicleObject::type
gchar * type
Holds a pointer to the type of the vehicle.
Definition: nvdsmeta_schema.h:153
NVDS_OBJECT_TYPE_UNKNOWN
@ NVDS_OBJECT_TYPE_UNKNOWN
"object" key will be missing in the schema
Definition: nvdsmeta_schema.h:81
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:357
NvDsVehicleObjectExt::color
gchar * color
Holds a pointer to the color of the vehicle.
Definition: nvdsmeta_schema.h:197
NvDsEventMsgMeta::sensorStr
gchar * sensorStr
Holds a pointer to a string containing the sensor's identity.
Definition: nvdsmeta_schema.h:340
NvDsRect::top
float top
Holds the position of rectangle's top in pixels.
Definition: nvdsmeta_schema.h:105
NvDsPersonObject::cap
gchar * cap
Holds a pointer to the type of cap the person is wearing, if any.
Definition: nvdsmeta_schema.h:167
NvDsEventMsgMeta::sensorId
gint sensorId
Holds the ID of the sensor that generated the event.
Definition: nvdsmeta_schema.h:322
NvDsVehicleObject::license
gchar * license
Holds a pointer to the license number of the vehicle.
Definition: nvdsmeta_schema.h:158
NvDsProductObjectExt
Holds a product object's parameters.
Definition: nvdsmeta_schema.h:142
NVDS_EVENT_STOPPED
@ NVDS_EVENT_STOPPED
Definition: nvdsmeta_schema.h:47
NvDsPersonObjectExt::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:214
NvDsPersonObjectExt
Holds a person object's parameters.
Definition: nvdsmeta_schema.h:207
NVDS_PAYLOAD_DEEPSTREAM_PROTOBUF
@ NVDS_PAYLOAD_DEEPSTREAM_PROTOBUF
Definition: nvdsmeta_schema.h:91
NvDsCoordinate
Hold a coordinate's position.
Definition: nvdsmeta_schema.h:123
NvDsProductObject::type
gchar * type
Holds the product type.
Definition: nvdsmeta_schema.h:269
NvDsEmbedding::embedding_vector
float * embedding_vector
Holds the embedding vector.
Definition: nvdsmeta_schema.h:260
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:253
NvDsFaceObjectWithExt::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:223
NvDsGeoLocation::alt
gdouble alt
Holds the location's altitude.
Definition: nvdsmeta_schema.h:117
NvDsEventMsgMeta::objType
NvDsObjectType objType
Holds the object's type.
Definition: nvdsmeta_schema.h:310
NvDsProductObject::shape
gchar * shape
Holds the product shape.
Definition: nvdsmeta_schema.h:270
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:318
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:252
NvDsEventMsgMeta::type
NvDsEventType type
Holds the event's type.
Definition: nvdsmeta_schema.h:308
NvDsObjectSignature::signature
gdouble * signature
Holds a pointer to an array of signature values.
Definition: nvdsmeta_schema.h:134
NvDsVehicleObject::color
gchar * color
Holds a pointer to the color of the vehicle.
Definition: nvdsmeta_schema.h:156
NvDsFaceObjectWithExt::eyecolor
gchar * eyecolor
Holds a pointer to the person's eye color.
Definition: nvdsmeta_schema.h:231
NvDsEventMsgMeta::otherAttrs
gchar * otherAttrs
Holds a pointer to a string containing other attributes associated with the object.
Definition: nvdsmeta_schema.h:343
NvDsJoint::y
float y
Holds the joint y position in pixels.
Definition: nvdsmeta_schema.h:242
NvDsFaceObject::name
gchar * name
Holds a pointer to the person's name.
Definition: nvdsmeta_schema.h:185
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:194
NvDsPersonObject::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:165
NvDsProductObjectExt
struct NvDsProductObjectExt NvDsProductObjectExt
Holds a product object's parameters.
NvDsJoint::confidence
float confidence
Holds the confidence of the joint.
Definition: nvdsmeta_schema.h:244
NvDsEvent
struct _NvDsEvent NvDsEvent
Holds event information.
NvDsEventMsgMeta::ts
gchar * ts
Holds a pointer to the generated event's timestamp.
Definition: nvdsmeta_schema.h:336
NVDS_EVENT_CUSTOM
@ NVDS_EVENT_CUSTOM
Specifies a custom event.
Definition: nvdsmeta_schema.h:56
NvDsGeoLocation
Holds geolocation parameters.
Definition: nvdsmeta_schema.h:114
NvDsPersonObject::age
guint age
Holds the person's age.
Definition: nvdsmeta_schema.h:171
NvDsFaceObject::gender
gchar * gender
Holds a pointer to the person's gender.
Definition: nvdsmeta_schema.h:178
NvDsConvexHull::points
gint * points
Holds a pointer a list of convex hull points.
Definition: nvdsmeta_schema.h:278
NvDsEventMsgMeta
struct NvDsEventMsgMeta NvDsEventMsgMeta
Holds event message meta data.
NvDsCoordinate::y
gdouble y
Holds the coordinate's Y position.
Definition: nvdsmeta_schema.h:125
NvDsFaceObject::hair
gchar * hair
Holds a pointer to the person's hair color.
Definition: nvdsmeta_schema.h:179
NvDsGeoLocation::lon
gdouble lon
Holds the location's longitude.
Definition: nvdsmeta_schema.h:116
NvDsVehicleObjectExt::license
gchar * license
Holds a pointer to the license number of the vehicle.
Definition: nvdsmeta_schema.h:199
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:195
NvDsEventMsgMeta::frameId
gint frameId
Holds the video frame ID of this event.
Definition: nvdsmeta_schema.h:330
NVDS_OBJECT_TYPE_CUSTOM
@ NVDS_OBJECT_TYPE_CUSTOM
Specifies a custom object.
Definition: nvdsmeta_schema.h:79
NvDsCoordinate::z
gdouble z
Holds the coordinate's Z position.
Definition: nvdsmeta_schema.h:126
NvDsVehicleObject
Holds a vehicle object's parameters.
Definition: nvdsmeta_schema.h:152
NvDsPersonObject::apparel
gchar * apparel
Holds a pointer to a description of the person's apparel.
Definition: nvdsmeta_schema.h:169
NvDs3DTracking
Holds Single View 3D Tracking metadata.
Definition: nvdsmeta_schema.h:286
NvDsFaceObject::cap
gchar * cap
Holds a pointer to the type of cap the person is wearing, if any.
Definition: nvdsmeta_schema.h:180
NvDsJoints
Holds a body pose's joint points.
Definition: nvdsmeta_schema.h:250
NvDsFaceObject
Holds a face object's parameters.
Definition: nvdsmeta_schema.h:177
NvDsPersonObjectExt
struct NvDsPersonObjectExt NvDsPersonObjectExt
Holds a person object's parameters.
_NvDsEvent::metadata
NvDsEventMsgMeta * metadata
Holds a pointer to event metadata.
Definition: nvdsmeta_schema.h:369
NvDsPayload
struct NvDsPayload NvDsPayload
Holds payload metadata.
NvDsCoordinate::x
gdouble x
Holds the coordinate's X position.
Definition: nvdsmeta_schema.h:124
NvDsVehicleObjectExt::mask
GList * mask
Holds a list of polygons for vehicle mask.
Definition: nvdsmeta_schema.h:201
NvDsEventType
NvDsEventType
Defines event type flags.
Definition: nvdsmeta_schema.h:43
NVDS_PAYLOAD_FORCE32
@ NVDS_PAYLOAD_FORCE32
Definition: nvdsmeta_schema.h:98
_NvDsCustomMsgInfo::message
void * message
Definition: nvdsmeta_schema.h:378
NvDsFaceObjectWithExt
Holds a face object's parameters.
Definition: nvdsmeta_schema.h:222
NvDsEventMsgMeta::coordinate
NvDsCoordinate coordinate
Holds the object's coordinates.
Definition: nvdsmeta_schema.h:316
NvDsEventMsgMeta::objClassId
gint objClassId
Holds the object's class ID.
Definition: nvdsmeta_schema.h:320
NvDsEventMsgMeta::extMsgSize
guint extMsgSize
Holds the size of the custom object at extMsg.
Definition: nvdsmeta_schema.h:351
NvDsRect
Holds a rectangle's position and size.
Definition: nvdsmeta_schema.h:104
NVDS_OBJECT_TYPE_RESERVED
@ NVDS_OBJECT_TYPE_RESERVED
New Object Type for Product.
Definition: nvdsmeta_schema.h:77
NvDsEventMsgMeta::bbox
NvDsRect bbox
Holds the object's bounding box.
Definition: nvdsmeta_schema.h:312
NvDsVehicleObject::region
gchar * region
Holds a pointer to the region of the vehicle.
Definition: nvdsmeta_schema.h:157
NvDsVehicleObjectExt
Holds a vehicle object's parameters.
Definition: nvdsmeta_schema.h:193
_NvDsEvent::eventType
NvDsEventType eventType
Holds the type of event.
Definition: nvdsmeta_schema.h:367
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.