NVIDIA DeepStream SDK API Reference

6.4 Release
nvdstracker.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
3  *
4  * NVIDIA Corporation and its licensors retain all intellectual property
5  * and proprietary rights in and to this software, related documentation
6  * and any modifications thereto. Any use, reproduction, disclosure or
7  * distribution of this software and related documentation without an express
8  * license agreement from NVIDIA Corporation is strictly prohibited.
9  *
10  */
11 
28 #ifndef _NVMOTRACKER_H_
29 #define _NVMOTRACKER_H_
30 
31 #include <stdint.h>
32 #include <time.h>
33 
34 #include "nvbufsurface.h"
35 #include "nvds_tracker_meta.h"
36 
37 #ifdef __cplusplus
38 extern "C"
39 {
40 #endif
41 
42 #define NVMOT_MAX_TRANSFORMS 4
43 
44 typedef uint64_t NvMOTStreamId;
45 
52 #define NVMOTCOMP_GPU 0x01
53 #define NVMOTCOMP_CPU 0x02
54 #define NVMOTCOMP_PVA 0x04
55 #define NVMOTCOMP_ANY 0xff
57 #define NVMOTCOMP_DEFAULT NVMOTCOMP_ANY
58 
62 typedef uint8_t NvMOTCompute;
63 
69 {
73  uint32_t maxWidth;
75  uint32_t maxHeight;
77  uint32_t maxPitch;
79  uint32_t maxSize;
81  uint32_t colorFormat;
83 
84 
88 typedef struct _NvMOTMiscConfig
89 {
91  uint32_t gpuId;
94  uint32_t maxObjPerStream;
97  uint32_t maxObjPerBatch;
99  typedef void (*logMsg) (int logLevel, const char * format, ...);
101 
110 typedef struct _NvMOTConfig
111 {
115  uint32_t maxStreams;
120  uint8_t numTransforms;
131 } NvMOTConfig;
132 
136 typedef enum
137 {
143 
144 typedef enum
145 {
155 
162 typedef struct _NvMOTConfigResponse
163 {
176 
180 typedef enum
181 {
185 } NvMOTStatus;
186 
190 typedef struct _NvMOTRect
191 {
193  float x;
195  float y;
197  float width;
199  float height;
200 } NvMOTRect;
201 
207 typedef struct _NvMOTObjToTrack
208 {
210  uint16_t classId;
214  float confidence;
220 
224 typedef struct _NvMOTObjToTrackList
225 {
232  uint32_t numAllocated;
234  uint32_t numFilled;
236 
246 typedef struct _NvMOTFrame
247 {
253  uint32_t seq_index;
256  uint32_t frameNum;
258  uint32_t srcFrameWidth;
260  uint32_t srcFrameHeight;
262  time_t timeStamp;
270  bool reset;
272  uint8_t numBuffers;
279 } NvMOTFrame;
280 
284 typedef struct _NvMOTTrackedObj
285 {
287  uint16_t classId;
289  uint64_t trackingId;
293  float confidence;
295  uint32_t age;
299  int32_t reidInd;
301  float visibility;
303  float ptImgFeet[2];
305  float ptWorldFeet[2];
309  uint8_t reserved[128];
311 
315 typedef struct _NvMOTTrackedObjList
316 {
320  uint32_t frameNum;
322  bool valid;
326  uint32_t numAllocated;
328  uint32_t numFilled;
330 
334 typedef struct _NvMOTTrackedObjBatch
335 {
339  uint32_t numAllocated;
341  uint32_t numFilled;
345 
349 typedef struct _NvMOTTrackerMiscData
350 {
353 
356 
359 
361 
367 typedef struct _NvMOTProcessParams
368 {
369  uint32_t numFrames;
372 
373 typedef struct _NvMOTQuery
374 {
379  uint8_t numTransforms;
391  uint32_t reidFeatureSize;
412 } NvMOTQuery;
413 
417 struct NvMOTContext;
418 typedef struct NvMOTContext* NvMOTContextHandle;
419 
438  NvMOTContextHandle *pContextHandle,
439  NvMOTConfigResponse *pConfigResponse);
440 
448 void NvMOT_DeInit(NvMOTContextHandle contextHandle);
449 
469  NvMOTProcessParams *pParams,
470  NvMOTTrackedObjBatch *pTrackedObjectsBatch);
471 
484  NvMOTProcessParams *pParams,
485  NvMOTTrackerMiscData *pTrackerMiscData);
500 NvMOTStatus NvMOT_Query(uint16_t customConfigFilePathSize, char* pCustomConfigFilePath, NvMOTQuery *pQuery);
501 
502 
520  // end of API group
522 
523 #ifdef __cplusplus
524 }
525 #endif
526 
527 #endif
_NvMOTPerTransformBatchConfig
Holds a configuration for batches for an input transform (a scaling/color conversion).
Definition: nvdstracker.h:68
_NvMOTFrame::bufferList
NvBufSurfaceParams ** bufferList
Holds a pointer to an array of pointers to buffer parameter structures.
Definition: nvdstracker.h:275
_NvMOTMiscConfig::logMsg
void(* logMsg)(int logLevel, const char *format,...)
Holds a pointer to a callback for logging messages.
Definition: nvdstracker.h:99
_NvMOTQuery::reidFeatureSize
uint32_t reidFeatureSize
Reid feature size.
Definition: nvdstracker.h:391
_NvMOTObjToTrack::classId
uint16_t classId
Holds the class of the object.
Definition: nvdstracker.h:210
_NvMOTPerTransformBatchConfig::maxPitch
uint32_t maxPitch
Holds the maximum pitch of each buffer.
Definition: nvdstracker.h:77
NvMOTTrackedObj
struct _NvMOTTrackedObj NvMOTTrackedObj
Holds information about each tracked object.
_NvMOTTrackedObj::reserved
uint8_t reserved[128]
Reserved custom data field.
Definition: nvdstracker.h:309
NvMOTStatus_Invalid_Path
@ NvMOTStatus_Invalid_Path
Definition: nvdstracker.h:184
_NvMOTQuery::outputConvexHull
bool outputConvexHull
Whether to output convex hull in user meta.
Definition: nvdstracker.h:399
_NvMOTQuery::supportPastFrame
bool supportPastFrame
Holds a Boolean which is true if outputing past frame is supported.
Definition: nvdstracker.h:403
_NvMOTQuery::maxShadowTrackingAge
uint32_t maxShadowTrackingAge
Holds maximum shadow tracking age per stream.
Definition: nvdstracker.h:387
_NvMOTObjToTrack::pPreservedData
void * pPreservedData
Holds a pointer to client data associated with the object.
Definition: nvdstracker.h:218
NvMOT_Init
NvMOTStatus NvMOT_Init(NvMOTConfig *pConfigIn, NvMOTContextHandle *pContextHandle, NvMOTConfigResponse *pConfigResponse)
Initializes a tracking context for a batch of one or more image streams.
_NvMOTQuery::batchMode
NvMOTBatchMode batchMode
Holds flags for whether batch or none batch mode is supported.
Definition: nvdstracker.h:405
_NvMOTQuery::maxTargetsPerStream
uint32_t maxTargetsPerStream
Holds maximum number of targets per stream.
Definition: nvdstracker.h:385
NvMOTConfigStatus_Invalid
@ NvMOTConfigStatus_Invalid
Definition: nvdstracker.h:140
NvMOTConfig
struct _NvMOTConfig NvMOTConfig
Holds a tracker configuration.
_NvMOTObjToTrack::confidence
float confidence
Holds the detection confidence of the object.
Definition: nvdstracker.h:214
NvMOTTrackedObjBatch
struct _NvMOTTrackedObjBatch NvMOTTrackedObjBatch
Holds a batch of lists of tracked objects.
_NvMOTConfigResponse::customConfigStatus
NvMOTConfigStatus customConfigStatus
Holds the status of the custom configurations.
Definition: nvdstracker.h:174
_NvMOTMiscConfig::gpuId
uint32_t gpuId
Holds the ID of the GPU to be used.
Definition: nvdstracker.h:91
NvMOTMiscConfig
struct _NvMOTMiscConfig NvMOTMiscConfig
Holds miscellaneous configurations.
_NvMOTQuery::numTransforms
uint8_t numTransforms
Holds the number of NvMOTPerTransformBatchConfig entries in perTransformBatchConfig.
Definition: nvdstracker.h:379
NvMOTBatchMode_NonBatch
@ NvMOTBatchMode_NonBatch
Non-batch processing mode.
Definition: nvdstracker.h:151
_NvMOTConfigResponse::summaryStatus
NvMOTConfigStatus summaryStatus
Holds the summary status of the entire configuration request.
Definition: nvdstracker.h:165
_NvMOTTrackedObjBatch
Holds a batch of lists of tracked objects.
Definition: nvdstracker.h:334
_NvMOTObjToTrackList::numFilled
uint32_t numFilled
Holds the number of populated blocks in the list.
Definition: nvdstracker.h:234
_NvMOTPerTransformBatchConfig::maxHeight
uint32_t maxHeight
Holds the maximum height of each frame.
Definition: nvdstracker.h:75
_NvMOTTrackedObjList::numAllocated
uint32_t numAllocated
Holds the number of blocks allocated for the list.
Definition: nvdstracker.h:326
_NvMOTTrackedObj::associatedObjectIn
NvMOTObjToTrack * associatedObjectIn
Holds a pointer to the associated input object, if there is one.
Definition: nvdstracker.h:297
NvMOTFrame
struct _NvMOTFrame NvMOTFrame
Holds a frame containing the image and objects to be tracked.
_NvMOTQuery::colorFormats
NvBufSurfaceColorFormat colorFormats[1]
Holds the color formats for input buffers; a required value.
Definition: nvdstracker.h:381
_NvMOTProcessParams::numFrames
uint32_t numFrames
Holds the number of frames in the batch.
Definition: nvdstracker.h:369
_NvMOTTrackedObj::classId
uint16_t classId
Holds the class ID of the object to be tracked.
Definition: nvdstracker.h:287
_NvMOTTrackedObjList::list
NvMOTTrackedObj * list
Holds a pointer to a list or array of object information blocks.
Definition: nvdstracker.h:324
NvMOT_DeInit
void NvMOT_DeInit(NvMOTContextHandle contextHandle)
Deinitializes a stream context.
_NvMOTRect
Holds the definition of a rectangle.
Definition: nvdstracker.h:190
_NvMOTFrame
Holds a frame containing the image and objects to be tracked.
Definition: nvdstracker.h:246
_NvMOTFrame::frameNum
uint32_t frameNum
Holds the sequential frame number that identifies the frame within the stream.
Definition: nvdstracker.h:256
_NvMOTTrackedObj::bbox
NvMOTRect bbox
Holds the bounding box.
Definition: nvdstracker.h:291
NvMOT_RemoveStreams
NvMOTStatus NvMOT_RemoveStreams(NvMOTContextHandle contextHandle, NvMOTStreamId streamIdMask)
Removes streams from a batch.
NvMOTPerTransformBatchConfig
struct _NvMOTPerTransformBatchConfig NvMOTPerTransformBatchConfig
Holds a configuration for batches for an input transform (a scaling/color conversion).
_NvMOTTrackedObjBatch::list
NvMOTTrackedObjList * list
Holds a pointer to an array of object lists.
Definition: nvdstracker.h:337
_NvMOTFrame::reset
bool reset
Holds a Boolean which is true to reset tracking for the stream.
Definition: nvdstracker.h:270
NvMOTRect
struct _NvMOTRect NvMOTRect
Holds the definition of a rectangle.
_NvMOTTrackedObj
Holds information about each tracked object.
Definition: nvdstracker.h:284
NvMOTConfigStatus_Unsupported
@ NvMOTConfigStatus_Unsupported
Definition: nvdstracker.h:141
_NvMOTPerTransformBatchConfig::colorFormat
uint32_t colorFormat
Holds the color format: RGB, NV12 etc.
Definition: nvdstracker.h:81
_NvMOTObjToTrackList::list
NvMOTObjToTrack * list
Holds a pointer to a list or array of object information blocks.
Definition: nvdstracker.h:230
_NvMOTFrame::srcFrameWidth
uint32_t srcFrameWidth
Holds the width of the original source frame.
Definition: nvdstracker.h:258
_NvMOTTrackedObj::trackingId
uint64_t trackingId
Holds a unique ID for the object, assigned by the tracker.
Definition: nvdstracker.h:289
_NvMOTFrame::objectsIn
NvMOTObjToTrackList objectsIn
Holds a list of objects in this frame which are to be tracked.
Definition: nvdstracker.h:278
_NvMOTQuery::outputShadowTracks
bool outputShadowTracks
Whether to output Shadow Tracks info in user meta.
Definition: nvdstracker.h:411
_NvMOTTrackedObj::visibility
float visibility
Object visibility.
Definition: nvdstracker.h:301
NvBufSurfaceParams
Hold the information of single buffer in the batch.
Definition: nvbufsurface.h:470
_NvMOTMiscConfig::maxObjPerStream
uint32_t maxObjPerStream
Holds the maximum number of objects to track per stream.
Definition: nvdstracker.h:94
_NvMOTConfigResponse
Holds a tracker's configuration status.
Definition: nvdstracker.h:162
NvMOTConfigResponse
struct _NvMOTConfigResponse NvMOTConfigResponse
Holds a tracker's configuration status.
NvMOT_Query
NvMOTStatus NvMOT_Query(uint16_t customConfigFilePathSize, char *pCustomConfigFilePath, NvMOTQuery *pQuery)
Query tracker lib capabilities and requirements.
_NvMOTMiscConfig::maxObjPerBatch
uint32_t maxObjPerBatch
Holds the maximum number of objects to track per batch.
Definition: nvdstracker.h:97
NvMOTObjToTrack
struct _NvMOTObjToTrack NvMOTObjToTrack
Holds information about an object to be tracked.
_NvMOTQuery::memType
NvBufSurfaceMemType memType
Holds the preferred memory type for input buffers.
Definition: nvdstracker.h:383
_NvMOTFrame::streamID
NvMOTStreamId streamID
Holds the stream ID of the stream source for this frame.
Definition: nvdstracker.h:249
_NvMOTTrackedObjList::frameNum
uint32_t frameNum
Holds the frame number for objects in the list.
Definition: nvdstracker.h:320
_NvMOTQuery::outputReidTensor
bool outputReidTensor
Whether to output ReID tensor in user meta.
Definition: nvdstracker.h:389
_NvMOTConfig::miscConfig
NvMOTMiscConfig miscConfig
Holds miscellaneous configurations.
Definition: nvdstracker.h:125
_NvMOTConfig::customConfigFilePathSize
uint16_t customConfigFilePathSize
Holds the length of customConfigFilePath.
Definition: nvdstracker.h:127
_NvMOTQuery::outputVisibility
bool outputVisibility
Whether to output visibility in user meta.
Definition: nvdstracker.h:395
_NvMOTFrame::numBuffers
uint8_t numBuffers
Holds the number of entries in bufferList.
Definition: nvdstracker.h:272
_NvMOTTrackedObj::age
uint32_t age
Holds the track length in frames.
Definition: nvdstracker.h:295
_NvDsObjConvexHull
Holds convex hull information.
Definition: nvds_tracker_meta.h:141
_NvMOTQuery::computeConfig
NvMOTCompute computeConfig
Holds flags for supported compute targets.
Definition: nvdstracker.h:376
_NvMOTObjToTrack::bbox
NvMOTRect bbox
Holds the bounding box of the object.
Definition: nvdstracker.h:212
_NvMOTTrackedObj::reidInd
int32_t reidInd
Each target’s reid tensor index in batch.
Definition: nvdstracker.h:299
_NvMOTTrackerMiscData::pShadowTrackBatch
NvDsTargetMiscDataBatch * pShadowTrackBatch
Holds the frame info of shadow tracks.
Definition: nvdstracker.h:358
NvMOTQuery
struct _NvMOTQuery NvMOTQuery
_NvMOTPerTransformBatchConfig::maxSize
uint32_t maxSize
Holds the maximum size of the buffer in bytes.
Definition: nvdstracker.h:79
NvMOTStatus
NvMOTStatus
Defines generic status codes for tracking operations.
Definition: nvdstracker.h:180
_NvMOTTrackedObj::confidence
float confidence
Holds the tracking confidence of the object.
Definition: nvdstracker.h:293
_NvMOTTrackedObjBatch::numFilled
uint32_t numFilled
Holds the number of filled blocks in the list.
Definition: nvdstracker.h:341
NvMOTStreamId
uint64_t NvMOTStreamId
Definition: nvdstracker.h:44
NvMOTBatchMode_Error
@ NvMOTBatchMode_Error
Unsupported batch mode.
Definition: nvdstracker.h:147
_NvMOTTrackedObjBatch::numAllocated
uint32_t numAllocated
Holds the number of blocks allocated for the list.
Definition: nvdstracker.h:339
_NvMOTObjToTrack
Holds information about an object to be tracked.
Definition: nvdstracker.h:207
_NvMOTTrackerMiscData::pPastFrameObjBatch
NvDsTargetMiscDataBatch * pPastFrameObjBatch
Holds past frame data of current batch.
Definition: nvdstracker.h:352
_NvMOTObjToTrackList::numAllocated
uint32_t numAllocated
Holds the number of blocks allocated for the list.
Definition: nvdstracker.h:232
NvBufSurfaceMemType
NvBufSurfaceMemType
Specifies memory types for NvBufSurface.
Definition: nvbufsurface.h:300
_NvMOTRect::height
float height
Holds the height of the bounding box, in pixels.
Definition: nvdstracker.h:199
_NvMOTConfig::computeConfig
NvMOTCompute computeConfig
Holds the compute target.
Definition: nvdstracker.h:113
_NvMOTObjToTrack::doTracking
bool doTracking
Holds a Boolean which is true if NvMOT is to track this object.
Definition: nvdstracker.h:216
_NvMOTConfig::maxStreams
uint32_t maxStreams
Holds the maximum number of streams in a batch.
Definition: nvdstracker.h:115
_NvMOTProcessParams
Holds parameters for processing a batch.
Definition: nvdstracker.h:367
_NvMOTTrackedObjBatch::pReidTensorBatch
NvDsReidTensorBatch * pReidTensorBatch
The whole batch’s reid tensor to fill by low level tracker.
Definition: nvdstracker.h:343
_NvMOTConfig::maxBufSurfAddrSize
uint32_t maxBufSurfAddrSize
Holds the max number of surface buffer addresses from buffer pool.
Definition: nvdstracker.h:117
_NvMOTTrackedObjList
Holds a list of tracked objects.
Definition: nvdstracker.h:315
_NvMOTQuery::maxTrajectoryBufferLength
uint32_t maxTrajectoryBufferLength
maximum frame of history to save per terminated track.
Definition: nvdstracker.h:409
_NvMOTConfig::customConfigFilePath
char * customConfigFilePath
A pointer to the pathname of the tracker's custom configuration file.
Definition: nvdstracker.h:130
NvMOTConfigStatus
NvMOTConfigStatus
Defines configuration request return codes.
Definition: nvdstracker.h:136
NvMOTCompute
uint8_t NvMOTCompute
Definition: nvdstracker.h:62
_NvMOTQuery
Definition: nvdstracker.h:373
NvMOTTrackedObjList
struct _NvMOTTrackedObjList NvMOTTrackedObjList
Holds a list of tracked objects.
_NvMOTPerTransformBatchConfig::maxWidth
uint32_t maxWidth
Holds the maximum width of each frame.
Definition: nvdstracker.h:73
_NvMOTTrackerMiscData::pTerminatedTrackBatch
NvDsTargetMiscDataBatch * pTerminatedTrackBatch
Holds the history of terminated tracks.
Definition: nvdstracker.h:355
NvMOT_Process
NvMOTStatus NvMOT_Process(NvMOTContextHandle contextHandle, NvMOTProcessParams *pParams, NvMOTTrackedObjBatch *pTrackedObjectsBatch)
Processes a batch.
_NvMOTRect::width
float width
Holds the width of the bounding box, in pixels.
Definition: nvdstracker.h:197
NvMOTProcessParams
struct _NvMOTProcessParams NvMOTProcessParams
Holds parameters for processing a batch.
_NvMOTObjToTrackList::detectionDone
bool detectionDone
Holds a Boolean which is true if detection was done on this frame even if the list of objects to trac...
Definition: nvdstracker.h:228
NvMOTStatus_Error
@ NvMOTStatus_Error
Definition: nvdstracker.h:183
_NvMOTTrackedObj::ptWorldFeet
float ptWorldFeet[2]
Foot location in 3D coordinates.
Definition: nvdstracker.h:305
NvMOTConfigStatus_Error
@ NvMOTConfigStatus_Error
Definition: nvdstracker.h:139
_NvMOTFrame::srcFrameHeight
uint32_t srcFrameHeight
Holds the height of the original source frame.
Definition: nvdstracker.h:260
_NvMOTRect::x
float x
Holds the left edge position of the object bounding box, in pixels.
Definition: nvdstracker.h:193
_NvMOTQuery::maxConvexHullSize
uint32_t maxConvexHullSize
Holdes maximum number of points in a convex hull.
Definition: nvdstracker.h:401
_NvMOTRect::y
float y
Holds the top edge position of the object bounding box, in pixels.
Definition: nvdstracker.h:195
_NvMOTTrackedObj::convexHull
NvDsObjConvexHull convexHull
Convex hull information projected on frame.
Definition: nvdstracker.h:307
_NvMOTConfigResponse::transformBatchStatus
NvMOTConfigStatus transformBatchStatus
Holds the transform batch configuration request status: summary status for all transforms.
Definition: nvdstracker.h:170
_NvMOTPerTransformBatchConfig::bufferType
NvBufSurfaceMemType bufferType
Holds the type of buffer.
Definition: nvdstracker.h:71
NvMOTBatchMode
NvMOTBatchMode
Definition: nvdstracker.h:144
_NvMOTTrackedObjList::numFilled
uint32_t numFilled
Holds the number of populated blocks in the list.
Definition: nvdstracker.h:328
_NvDsTargetMiscDataBatch
Batch of all streams of a given target misc output
Definition: nvds_tracker_meta.h:103
_NvMOTObjToTrackList
Holds a list of objects.
Definition: nvdstracker.h:224
NvMOTContextHandle
struct NvMOTContext * NvMOTContextHandle
Definition: nvdstracker.h:418
_NvMOTFrame::timeStampValid
bool timeStampValid
Holds a Boolean which is true if the timestamp value is properly populated.
Definition: nvdstracker.h:265
NvMOTConfigStatus_OK
@ NvMOTConfigStatus_OK
Definition: nvdstracker.h:138
_NvMOTQuery::outputTerminatedTracks
bool outputTerminatedTracks
Whether to output terminted Tacks info in user meta.
Definition: nvdstracker.h:407
_NvMOTFrame::doTracking
bool doTracking
Holds a Boolean which is true if objects in this frame are to be tracked.
Definition: nvdstracker.h:268
nvds_tracker_meta.h
NvMOT_RetrieveMiscData
NvMOTStatus NvMOT_RetrieveMiscData(NvMOTContextHandle contextHandle, NvMOTProcessParams *pParams, NvMOTTrackerMiscData *pTrackerMiscData)
Process the past-frame data in the low-level tracker lib and retrieve.
_NvMOTFrame::timeStamp
time_t timeStamp
Holds the timestamp of the frame at the time of capture.
Definition: nvdstracker.h:262
NvMOTBatchMode_Batch
@ NvMOTBatchMode_Batch
Batch processing mode.
Definition: nvdstracker.h:149
_NvMOTTrackerMiscData
Tracker misc data.
Definition: nvdstracker.h:349
NvMOTStatus_OK
@ NvMOTStatus_OK
Definition: nvdstracker.h:182
NvMOTBatchMode_MaxValue
@ NvMOTBatchMode_MaxValue
Max value of the enum.
Definition: nvdstracker.h:153
NvMOTObjToTrackList
struct _NvMOTObjToTrackList NvMOTObjToTrackList
Holds a list of objects.
_NvMOTConfigResponse::miscConfigStatus
NvMOTConfigStatus miscConfigStatus
Holds the status of the miscellaneous configurations.
Definition: nvdstracker.h:172
_NvMOTTrackedObjList::streamID
NvMOTStreamId streamID
Holds the stream ID of the stream associated with objects in the list.
Definition: nvdstracker.h:318
NvMOTTrackerMiscData
struct _NvMOTTrackerMiscData NvMOTTrackerMiscData
Tracker misc data.
nvbufsurface.h
_NvMOTConfig
Holds a tracker configuration.
Definition: nvdstracker.h:110
_NvMOTQuery::outputFootLocation
bool outputFootLocation
Whether to output foot location in user meta.
Definition: nvdstracker.h:397
_NvMOTTrackedObj::ptImgFeet
float ptImgFeet[2]
Foot location in frame coordinates.
Definition: nvdstracker.h:303
_NvMOTProcessParams::frameList
NvMOTFrame * frameList
Holds a pointer to an array of frame data.
Definition: nvdstracker.h:370
_NvMOTConfig::perTransformBatchConfig
NvMOTPerTransformBatchConfig * perTransformBatchConfig
Holds a pointer to a list of numTransform batch configurations, one per transform,...
Definition: nvdstracker.h:123
_NvMOTConfigResponse::computeStatus
NvMOTConfigStatus computeStatus
Holds the compute target request status.
Definition: nvdstracker.h:167
_NvMOTFrame::seq_index
uint32_t seq_index
Holds the index of the stream in the sequence of streams.
Definition: nvdstracker.h:253
NvBufSurfaceColorFormat
NvBufSurfaceColorFormat
Defines color formats for NvBufSurface.
Definition: nvbufsurface.h:103
_NvDsReidTensorBatch
ReID tensor of the batch.
Definition: nvds_tracker_meta.h:118
_NvMOTTrackedObjList::valid
bool valid
Holds a Boolean which is true if this entry in the batch is valid.
Definition: nvdstracker.h:322
_NvMOTConfig::numTransforms
uint8_t numTransforms
Holds the number of NvMOTPerTransformBatchConfig entries in perTransformBatchConfig.
Definition: nvdstracker.h:120
_NvMOTQuery::outputTrajectory
bool outputTrajectory
Whether to output target trajectories in user meta.
Definition: nvdstracker.h:393
_NvMOTMiscConfig
Holds miscellaneous configurations.
Definition: nvdstracker.h:88