Defines an API for the GStreamer NvDsPreProcess plugin.
Defines an API for the GStreamer NvDsPreProcess custom lib.
Defines an API for the GStreamer NvDsPreProcess custom lib implementation.
Data Structures | |
struct | CustomTransformParams |
custom transformation parameter for calling nvbufsurftransform api for scaling and converting the ROIs to the network resolutions to be used by custom lib. More... | |
struct | NvDsPreProcessTensorParams |
Holds model parameters for tensor preparation. More... | |
struct | NvDsPreProcessNetworkSize |
Holds information about the model network. More... | |
struct | CustomSeqProcTensorParams |
Tensor params for Custom sequence processing for 3d conv network. More... | |
struct | CustomTensorParams |
Tensor params passed to custom library for tensor preparation. More... | |
struct | CustomInitParams |
Custom Initialization parameter for custom library. More... | |
struct | NvDsPreProcessCustomBuf |
Custom Buffer passed to the custom lib for preparing tensor. More... | |
class | NvDsPreProcessAcquirer |
class for acquiring and releasing a buffer from tensor pool by custom lib. More... | |
struct | NvDsPreProcessUnit |
A preprocess unit for processing which can be Frame/ROI. More... | |
struct | NvDsPreProcessBatch |
Holds information about the batch of frames to be inferred. More... | |
struct | NvDsPreProcessTensorMeta |
tensor meta containing prepared tensor and related info inside preprocess user meta which is attached at batch level More... | |
struct | GstNvDsPreProcessBatchMeta |
preprocess meta as a user meta which is attached at batch level More... | |
Macros | |
#define | _PATH_MAX 4096 |
Maximum file path length. More... | |
#define | NVDSPREPROCESS_USER_CONFIGS_PIXEL_NORMALIZATION_FACTOR "pixel-normalization-factor" |
pixel-normalization-factor config parameter More... | |
#define | NVDSPREPROCESS_USER_CONFIGS_MEAN_FILE "mean-file" |
mean-file config parameter More... | |
#define | NVDSPREPROCESS_USER_CONFIGS_OFFSETS "offsets" |
offsets config parameter More... | |
Typedefs | |
typedef struct CustomCtx | CustomCtx |
Context for custom library. More... | |
typedef void(* | NvDsPreProcessConvertFcn) (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Function pointer type to which any of the NvDsPreProcessConvert functions can be assigned. More... | |
typedef struct CustomCtx | CustomCtx |
Context for custom library. More... | |
Functions | |
void | NvDsPreProcessConvert_C3ToP3Float (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 3 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution. More... | |
void | NvDsPreProcessConvert_C3ToL3Float (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 3 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution. More... | |
void | NvDsPreProcessConvert_C4ToP3Float (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 3 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution. More... | |
void | NvDsPreProcessConvert_C4ToL3Float (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 3 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution. More... | |
void | NvDsPreProcessConvert_C3ToP3RFloat (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 3 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution with plane order reversed. More... | |
void | NvDsPreProcessConvert_C3ToL3RFloat (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 3 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution with plane order reversed. More... | |
void | NvDsPreProcessConvert_C4ToP3RFloat (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 4 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution with plane order reversed. More... | |
void | NvDsPreProcessConvert_C4ToL3RFloat (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an input packed 4 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution with plane order reversed. More... | |
void | NvDsPreProcessConvert_C1ToP1Float (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Converts an 1 channel UINT8 input of width x height resolution into an 1 channel float buffer of width x height resolution. More... | |
void | NvDsPreProcessConvert_FtFTensor (float *outBuffer, float *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
NvDsPreProcessStatus | CustomTransformation (NvBufSurface *in_surf, NvBufSurface *out_surf, CustomTransformParams ¶ms) |
Custom transformation function for group. More... | |
NvDsPreProcessStatus | CustomAsyncTransformation (NvBufSurface *in_surf, NvBufSurface *out_surf, CustomTransformParams ¶ms) |
Custom Asynchronus group transformation function. More... | |
NvDsPreProcessStatus | CustomTensorPreparation (CustomCtx *ctx, NvDsPreProcessBatch *batch, NvDsPreProcessCustomBuf *&buf, CustomTensorParams &tensorParam, NvDsPreProcessAcquirer *acquirer) |
Custom tensor preparation function for NCHW/NHWC network order. More... | |
CustomCtx * | initLib (CustomInitParams initparams) |
custom library initialization function More... | |
void | deInitLib (CustomCtx *ctx) |
custom library deinitialization function More... | |
Variables | |
void * | NvDsPreProcessTensorMeta::raw_tensor_buffer |
raw tensor buffer preprocessed for infer More... | |
guint64 | NvDsPreProcessTensorMeta::buffer_size |
size of raw tensor buffer More... | |
std::vector< int > | NvDsPreProcessTensorMeta::tensor_shape |
raw tensor buffer shape More... | |
NvDsDataType | NvDsPreProcessTensorMeta::data_type |
model datatype for which tensor prepared More... | |
std::string | NvDsPreProcessTensorMeta::tensor_name |
to be same as model input layer name More... | |
guint | NvDsPreProcessTensorMeta::gpu_id |
gpu-id on which tensor prepared More... | |
void * | NvDsPreProcessTensorMeta::private_data |
pointer to buffer from tensor pool More... | |
guint | NvDsPreProcessTensorMeta::meta_id |
meta id for differentiating between multiple tensor meta from same gst buffer,for the case when sum of roi's exceeds the batch size More... | |
std::vector< guint64 > | GstNvDsPreProcessBatchMeta::target_unique_ids |
target unique ids for which meta is prepared More... | |
NvDsPreProcessTensorMeta * | GstNvDsPreProcessBatchMeta::tensor_meta |
pointer to tensor meta More... | |
std::vector< NvDsRoiMeta > | GstNvDsPreProcessBatchMeta::roi_vector |
list of roi vectors per batch More... | |
void * | GstNvDsPreProcessBatchMeta::private_data |
pointer to buffer from scaling pool More... | |
#define _PATH_MAX 4096 |
Maximum file path length.
Definition at line 46 of file nvdspreprocess_lib.h.
#define NVDSPREPROCESS_USER_CONFIGS_MEAN_FILE "mean-file" |
mean-file config parameter
Definition at line 52 of file nvdspreprocess_lib.h.
#define NVDSPREPROCESS_USER_CONFIGS_OFFSETS "offsets" |
offsets config parameter
Definition at line 55 of file nvdspreprocess_lib.h.
#define NVDSPREPROCESS_USER_CONFIGS_PIXEL_NORMALIZATION_FACTOR "pixel-normalization-factor" |
pixel-normalization-factor config parameter
Definition at line 49 of file nvdspreprocess_lib.h.
Context for custom library.
Definition at line 54 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_interface.h.
Context for custom library.
Definition at line 54 of file includes/nvdspreprocess_interface.h.
typedef void(* NvDsPreProcessConvertFcn) (float *outBuffer, unsigned char *inBuffer, unsigned int width, unsigned int height, unsigned int pitch, float scaleFactor, float *meanDataBuffer, cudaStream_t stream) |
Function pointer type to which any of the NvDsPreProcessConvert functions can be assigned.
Definition at line 334 of file nvdspreprocess_conversion.h.
enum NvDsPreProcessFormat |
Defines model color formats.
Definition at line 104 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_interface.h.
enum NvDsPreProcessFormat |
Defines model color formats.
Definition at line 104 of file includes/nvdspreprocess_interface.h.
Enum for the network input order according to which network shape will be provided to prepare raw tensor for inferencing.
Definition at line 91 of file includes/nvdspreprocess_interface.h.
Enum for the network input order according to which network shape will be provided to prepare raw tensor for inferencing.
Definition at line 91 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_interface.h.
enum NvDsPreProcessStatus |
Enum for the status codes returned by NvDsPreProcessImpl.
Definition at line 59 of file includes/nvdspreprocess_interface.h.
enum NvDsPreProcessStatus |
Enum for the status codes returned by NvDsPreProcessImpl.
Definition at line 59 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_interface.h.
NvDsPreProcessStatus CustomAsyncTransformation | ( | NvBufSurface * | in_surf, |
NvBufSurface * | out_surf, | ||
CustomTransformParams & | params | ||
) |
Custom Asynchronus group transformation function.
NvDsPreProcessStatus CustomTensorPreparation | ( | CustomCtx * | ctx, |
NvDsPreProcessBatch * | batch, | ||
NvDsPreProcessCustomBuf *& | buf, | ||
CustomTensorParams & | tensorParam, | ||
NvDsPreProcessAcquirer * | acquirer | ||
) |
Custom tensor preparation function for NCHW/NHWC network order.
NvDsPreProcessStatus CustomTransformation | ( | NvBufSurface * | in_surf, |
NvBufSurface * | out_surf, | ||
CustomTransformParams & | params | ||
) |
Custom transformation function for group.
void deInitLib | ( | CustomCtx * | ctx | ) |
custom library deinitialization function
CustomCtx* initLib | ( | CustomInitParams | initparams | ) |
custom library initialization function
void NvDsPreProcessConvert_C1ToP1Float | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an 1 channel UINT8 input of width x height resolution into an 1 channel float buffer of width x height resolution.
The input buffer can have a pitch > width . The cuda kernel supports normalization and mean image subtraction.
outBuffer | Cuda device buffer for float output. Should be at least (width * height * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for UINT8 input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C3ToL3Float | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 3 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for RGB -> RGB and BGR -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C3ToL3RFloat | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 3 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution with plane order reversed.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for BGR -> RGB and RGB -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C3ToP3Float | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 3 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for RGB -> RGB and BGR -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C3ToP3RFloat | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 3 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution with plane order reversed.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for BGR -> RGB and RGB -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C4ToL3Float | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 3 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for RGBA -> RGB and BGRx -> BGR conversions.
outBuffer | Cuda device buffer for linear float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C4ToL3RFloat | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 4 channel buffer of width x height resolution into an linear 3-channel float buffer of width x height resolution with plane order reversed.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for BGRx -> RGB and RGBA -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C4ToP3Float | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 3 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for RGBA -> RGB and BGRx -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_C4ToP3RFloat | ( | float * | outBuffer, |
unsigned char * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
Converts an input packed 4 channel buffer of width x height resolution into an planar 3-channel float buffer of width x height resolution with plane order reversed.
The input buffer can have a pitch > (width * 3). The cuda kernel supports normalization and mean image subtraction.
This kernel can be used for BGRx -> RGB and RGBA -> BGR conversions.
outBuffer | Cuda device buffer for planar float output. Should be at least (width * height * 3 * sizeof(float)) bytes. |
inBuffer | Cuda device buffer for packed input. Should be at least (pitch * height) bytes. |
width | Width of the buffers in pixels. |
height | Height of the buffers in pixels. |
pitch | Pitch of the input buffer in bytes. |
scaleFactor | Normalization factor. |
meanDataBuffer | Mean Image Data buffer. Should be at least (width * height * 3 * sizeof(float)) bytes. |
stream | Cuda stream identifier. |
void NvDsPreProcessConvert_FtFTensor | ( | float * | outBuffer, |
float * | inBuffer, | ||
unsigned int | width, | ||
unsigned int | height, | ||
unsigned int | pitch, | ||
float | scaleFactor, | ||
float * | meanDataBuffer, | ||
cudaStream_t | stream | ||
) |
guint64 NvDsPreProcessTensorMeta::buffer_size |
size of raw tensor buffer
Definition at line 56 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
NvDsDataType NvDsPreProcessTensorMeta::data_type |
model datatype for which tensor prepared
Definition at line 62 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
guint NvDsPreProcessTensorMeta::gpu_id |
gpu-id on which tensor prepared
Definition at line 68 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
guint NvDsPreProcessTensorMeta::meta_id |
meta id for differentiating between multiple tensor meta from same gst buffer,for the case when sum of roi's exceeds the batch size
Definition at line 74 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
void * NvDsPreProcessTensorMeta::private_data |
pointer to buffer from tensor pool
Definition at line 71 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
void * GstNvDsPreProcessBatchMeta::private_data |
pointer to buffer from scaling pool
Definition at line 94 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
void * NvDsPreProcessTensorMeta::raw_tensor_buffer |
raw tensor buffer preprocessed for infer
Definition at line 53 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
std::vector< NvDsRoiMeta > GstNvDsPreProcessBatchMeta::roi_vector |
list of roi vectors per batch
Definition at line 91 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
std::vector< guint64 > GstNvDsPreProcessBatchMeta::target_unique_ids |
target unique ids for which meta is prepared
Definition at line 85 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
NvDsPreProcessTensorMeta * GstNvDsPreProcessBatchMeta::tensor_meta |
pointer to tensor meta
Definition at line 88 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
std::string NvDsPreProcessTensorMeta::tensor_name |
to be same as model input layer name
Definition at line 65 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.
std::vector< int > NvDsPreProcessTensorMeta::tensor_shape |
raw tensor buffer shape
Definition at line 59 of file gst-plugins/gst-nvdspreprocess/include/nvdspreprocess_meta.h.