NVIDIA DeepStream SDK API Reference6.0.1 Release |
Holds information parsed from segmentation network output for one frame.
Definition at line 514 of file nvdsinfer_context.h.
Data Fields | |
unsigned int | width |
Holds the width of the output. More... | |
unsigned int | height |
Holds the height of the output. More... | |
unsigned int | classes |
Holds the number of classes supported by the network. More... | |
int * | class_map |
Holds a pointer to an array for the 2D pixel class map. More... | |
float * | class_probability_map |
Holds a pointer to an array containing raw probabilities. More... | |
int* NvDsInferSegmentationOutput::class_map |
Holds a pointer to an array for the 2D pixel class map.
The output for pixel (x,y) is at index (y*width+x).
Definition at line 524 of file nvdsinfer_context.h.
float* NvDsInferSegmentationOutput::class_probability_map |
Holds a pointer to an array containing raw probabilities.
The probability for class c and pixel (x,y) is at index (c*width*height + y*width+x).
Definition at line 528 of file nvdsinfer_context.h.
unsigned int NvDsInferSegmentationOutput::classes |
Holds the number of classes supported by the network.
Definition at line 521 of file nvdsinfer_context.h.
unsigned int NvDsInferSegmentationOutput::height |
Holds the height of the output.
Same as network height.
Definition at line 519 of file nvdsinfer_context.h.
unsigned int NvDsInferSegmentationOutput::width |
Holds the width of the output.
Same as network width.
Definition at line 517 of file nvdsinfer_context.h.