NVIDIA DeepStream SDK API Reference6.1.1 Release |
Holds the information inferred by the network on one frame.
Definition at line 534 of file nvdsinfer_context.h.
Data Fields | |
NvDsInferNetworkType | outputType |
Holds an output type indicating the valid member in the union of detectionOutput, classificationOutput, and segmentationOutput. More... | |
union { | |
NvDsInferDetectionOutput detectionOutput | |
Holds detector output. More... | |
NvDsInferClassificationOutput classificationOutput | |
Holds classifier output. More... | |
NvDsInferSegmentationOutput segmentationOutput | |
Holds classifier output. More... | |
}; | |
Holds a union of supported outputs. More... | |
union { ... } |
Holds a union of supported outputs.
The valid member is determined by outputType.
NvDsInferClassificationOutput NvDsInferFrameOutput::classificationOutput |
Holds classifier output.
Valid when outputType is NvDsInferNetworkType_Classifier.
Definition at line 549 of file nvdsinfer_context.h.
NvDsInferDetectionOutput NvDsInferFrameOutput::detectionOutput |
Holds detector output.
Valid when outputType is NvDsInferNetworkType_Detector.
Definition at line 546 of file nvdsinfer_context.h.
NvDsInferNetworkType NvDsInferFrameOutput::outputType |
Holds an output type indicating the valid member in the union of detectionOutput, classificationOutput, and segmentationOutput.
This is basically the network type.
Definition at line 539 of file nvdsinfer_context.h.
NvDsInferSegmentationOutput NvDsInferFrameOutput::segmentationOutput |
Holds classifier output.
Valid when outputType is NvDsInferNetworkType_Classifier.
Definition at line 552 of file nvdsinfer_context.h.