NVIDIA DeepStream SDK API Reference6.1.1 Release |
Holds information about one batch to be inferred.
Definition at line 423 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 431 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 427 of file nvdsinfer_context.h.
unsigned int NvDsInferContextBatchInput::inputPitch |
Holds the pitch of the input frames, in bytes.
Definition at line 433 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 429 of file nvdsinfer_context.h.
void* NvDsInferContextBatchInput::returnFuncData |
A pointer to the data to be supplied with the callback in returnInputFunc.
Definition at line 438 of file nvdsinfer_context.h.
NvDsInferContextReturnInputAsyncFunc NvDsInferContextBatchInput::returnInputFunc |
Holds a callback for returning the input buffers to the client.
Definition at line 435 of file nvdsinfer_context.h.