NVIDIA DeepStream SDK API Reference5.0 Release |
Holds the detection parameters required for parsing objects.
Definition at line 192 of file nvdsinfer_custom_impl.h.
Data Fields | |
unsigned int | numClassesConfigured |
Holds the number of classes requested to be parsed, starting with class ID 0. More... | |
std::vector< float > | perClassPreclusterThreshold |
Holds a per-class vector of detection confidence thresholds to be applied prior to clustering operation. More... | |
std::vector< float > | perClassPostclusterThreshold |
std::vector< float > & | perClassThreshold = perClassPreclusterThreshold |
Deprecated. More... | |
unsigned int NvDsInferParseDetectionParams::numClassesConfigured |
Holds the number of classes requested to be parsed, starting with class ID 0.
Parsing functions may only output objects with class ID less than this value.
Definition at line 197 of file nvdsinfer_custom_impl.h.
std::vector<float> NvDsInferParseDetectionParams::perClassPostclusterThreshold |
Definition at line 205 of file nvdsinfer_custom_impl.h.
std::vector<float> NvDsInferParseDetectionParams::perClassPreclusterThreshold |
Holds a per-class vector of detection confidence thresholds to be applied prior to clustering operation.
Parsing functions may only output an object with detection confidence greater than or equal to the vector element indexed by the object's class ID.
Definition at line 203 of file nvdsinfer_custom_impl.h.
std::vector<float>& NvDsInferParseDetectionParams::perClassThreshold = perClassPreclusterThreshold |
Deprecated.
Use perClassPreclusterThreshold instead. Reference to maintain backward compatibility.
Definition at line 209 of file nvdsinfer_custom_impl.h.