NVIDIA DeepStream SDK API Reference4.0 Release |
Holds the detection parameters required for parsing objects.
Definition at line 128 of file nvdsinfer_custom_impl.h.
Data Fields | |
unsigned int | numClassesConfigured |
Number of classes requested to be parsed starting with classID 0. More... | |
std::vector< float > | perClassThreshold |
Per class detection confidence threshold. More... | |
unsigned int NvDsInferParseDetectionParams::numClassesConfigured |
Number of classes requested to be parsed starting with classID 0.
Parsing functions should only output objects with classID < numClassesConfigured.
Definition at line 132 of file nvdsinfer_custom_impl.h.
std::vector<float> NvDsInferParseDetectionParams::perClassThreshold |
Per class detection confidence threshold.
Parsing functions should only output objects with detectionConfidence >= perClassThreshold[object's classID]
Definition at line 135 of file nvdsinfer_custom_impl.h.