embeded/jetson
deepstream
구차니
2022. 4. 15. 17:14
[링크 : https://docs.nvidia.com/metropolis/deepstream/sdk-api/nvdsinfer__custom__impl_8h.html]
NvDsInferLayerInfo Struct
[링크 : https://docs.nvidia.com/metropolis/deepstream/sdk-api/structNvDsInferLayerInfo.html]
45 typedef struct 46 { 48 unsigned int numDims; 50 unsigned int d[NVDSINFER_MAX_DIMS]; 52 unsigned int numElements; 53 } NvDsInferDims; 71 typedef enum 72 { 74 FLOAT = 0, 76 HALF = 1, 78 INT8 = 2, 80 INT32 = 3 81 } NvDsInferDataType; 86 typedef struct 87 { 89 NvDsInferDataType dataType; 91 union { 92 NvDsInferDims inferDims; 93 NvDsInferDims dims _DS_DEPRECATED_("dims is deprecated. Use inferDims instead"); 94 }; 96 int bindingIndex; 98 const char* layerName; 100 void *buffer; 103 int isInput; 104 } NvDsInferLayerInfo; |
[링크 : https://docs.nvidia.com/metropolis/deepstream/sdk-api/nvdsinfer_8h_source.html]