NVIDIA DeepStream SDK API Reference5.0 Release |
Holds information about one batch to be inferred.
Definition at line 383 of file nvdsinfer_context.h.
Data Fields | |
void ** | inputFrames |
Holds a pointer to an array of pointers to input frame buffers. More... | |
unsigned int | numInputFrames |
Holds the number of input frames, i.e. More... | |
NvDsInferFormat | inputFormat |
Holds the format of the frame contents. More... | |
unsigned int | inputPitch |
Holds the pitch of the input frames, in bytes. More... | |
NvDsInferContextReturnInputAsyncFunc | returnInputFunc |
Holds a callback for returning the input buffers to the client. More... | |
void * | returnFuncData |
A pointer to the data to be supplied with the callback in returnInputFunc. More... | |
NvDsInferFormat NvDsInferContextBatchInput::inputFormat |
Holds the format of the frame contents.
Definition at line 391 of file nvdsinfer_context.h.
void** NvDsInferContextBatchInput::inputFrames |
Holds a pointer to an array of pointers to input frame buffers.
The size of the array must be at least numInputFrames.
Definition at line 387 of file nvdsinfer_context.h.
unsigned int NvDsInferContextBatchInput::inputPitch |
Holds the pitch of the input frames, in bytes.
Definition at line 393 of file nvdsinfer_context.h.
unsigned int NvDsInferContextBatchInput::numInputFrames |
Holds the number of input frames, i.e.
the size of the batch.
Definition at line 389 of file nvdsinfer_context.h.
void* NvDsInferContextBatchInput::returnFuncData |
A pointer to the data to be supplied with the callback in returnInputFunc.
Definition at line 398 of file nvdsinfer_context.h.
NvDsInferContextReturnInputAsyncFunc NvDsInferContextBatchInput::returnInputFunc |
Holds a callback for returning the input buffers to the client.
Definition at line 395 of file nvdsinfer_context.h.