Holds information parsed from segmentation network output for one frame.
Definition at line 467 of file post_processor_struct.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* NvDsPostProcessSegmentationOutput::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 477 of file post_processor_struct.h.
float* NvDsPostProcessSegmentationOutput::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 481 of file post_processor_struct.h.
unsigned int NvDsPostProcessSegmentationOutput::classes |
Holds the number of classes supported by the network.
Definition at line 474 of file post_processor_struct.h.
unsigned int NvDsPostProcessSegmentationOutput::height |
Holds the height of the output.
Same as network height.
Definition at line 472 of file post_processor_struct.h.
unsigned int NvDsPostProcessSegmentationOutput::width |
Holds the width of the output.
Same as network width.
Definition at line 470 of file post_processor_struct.h.