Holds the information inferred by the network on one frame.
Definition at line 508 of file post_processor_struct.h.
Data Fields | |
NvDsPostProcessNetworkType | outputType |
Holds an output type indicating the valid member in the union of detectionOutput, classificationOutput, and segmentationOutput. More... | |
union { | |
NvDsPostProcessDetectionOutput detectionOutput | |
Holds detector output. More... | |
NvDsPostProcessClassificationOutput classificationOutput | |
Holds classifier output. More... | |
NvDsPostProcessSegmentationOutput segmentationOutput | |
Holds classifier output. More... | |
NvDsPostProcessBodyPoseOutput bodyPoseOutput | |
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.
NvDsPostProcessBodyPoseOutput NvDsPostProcessFrameOutput::bodyPoseOutput |
Holds classifier output.
Valid when outputType is NvDsPostProcessNetworkType_Classifier.
Definition at line 529 of file post_processor_struct.h.
NvDsPostProcessClassificationOutput NvDsPostProcessFrameOutput::classificationOutput |
Holds classifier output.
Valid when outputType is NvDsPostProcessNetworkType_Classifier.
Definition at line 523 of file post_processor_struct.h.
NvDsPostProcessDetectionOutput NvDsPostProcessFrameOutput::detectionOutput |
Holds detector output.
Valid when outputType is NvDsPostProcessNetworkType_Detector.
Definition at line 520 of file post_processor_struct.h.
NvDsPostProcessNetworkType NvDsPostProcessFrameOutput::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 513 of file post_processor_struct.h.
NvDsPostProcessSegmentationOutput NvDsPostProcessFrameOutput::segmentationOutput |
Holds classifier output.
Valid when outputType is NvDsPostProcessNetworkType_Classifier.
Definition at line 526 of file post_processor_struct.h.