|
|
NVIDIA DeepStream SDK API Reference4.0.2 Release |
Holds the information inferred by the network on one frame.
Definition at line 424 of file nvdsinfer_context.h.

Data Fields | |
| NvDsInferNetworkType | outputType |
| Output type indicating the valid member in the union. More... | |
| union { | |
| NvDsInferDetectionOutput detectionOutput | |
| Detector output. More... | |
| NvDsInferClassificationOutput classificationOutput | |
| Classifier output. More... | |
| NvDsInferSegmentationOutput segmentationOutput | |
| Classifier output. More... | |
| }; | |
| Union of the various outputs supported. More... | |
| union { ... } |
Union of the various outputs supported.
Valid member is based on the outputType.
| NvDsInferClassificationOutput NvDsInferFrameOutput::classificationOutput |
Classifier output.
Valid when outputType is NvDsInferNetworkType_Classifier.
Definition at line 436 of file nvdsinfer_context.h.
| NvDsInferDetectionOutput NvDsInferFrameOutput::detectionOutput |
Detector output.
Valid when outputType is NvDsInferNetworkType_Detector.
Definition at line 434 of file nvdsinfer_context.h.
| NvDsInferNetworkType NvDsInferFrameOutput::outputType |
Output type indicating the valid member in the union.
This is basically the network type.
Definition at line 428 of file nvdsinfer_context.h.
| NvDsInferSegmentationOutput NvDsInferFrameOutput::segmentationOutput |
Classifier output.
Valid when outputType is NvDsInferNetworkType_Classifier.
Definition at line 438 of file nvdsinfer_context.h.