|
|
NVIDIA DeepStream SDK API Reference4.0.2 Release |
Holds the information parsed from segmentation network output for one frame.
Definition at line 405 of file nvdsinfer_context.h.
Data Fields | |
| unsigned int | width |
| Width of the output. More... | |
| unsigned int | height |
| Height of the output. More... | |
| unsigned int | classes |
| Number of classes supported by the network. More... | |
| int * | class_map |
| Pointer to the array for 2D pixel class map. More... | |
| float * | class_probability_map |
| Pointer to the raw array containing the probabilities. More... | |
| int* NvDsInferSegmentationOutput::class_map |
Pointer to the array for 2D pixel class map.
The output for pixel (x,y) will be at index (y * width + x).
Definition at line 415 of file nvdsinfer_context.h.
| float* NvDsInferSegmentationOutput::class_probability_map |
Pointer to the raw array containing the probabilities.
The probability for class c and pixel (x,y) will be at index (c * width *height + y * width + x).
Definition at line 418 of file nvdsinfer_context.h.
| unsigned int NvDsInferSegmentationOutput::classes |
Number of classes supported by the network.
Definition at line 412 of file nvdsinfer_context.h.
| unsigned int NvDsInferSegmentationOutput::height |
| unsigned int NvDsInferSegmentationOutput::width |