Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) T4
• DeepStream Version 6.0
• JetPack Version (valid for Jetson only)
• TensorRT Version 8.0
• NVIDIA GPU Driver Version (valid for GPU only) 11.4
• Issue Type( questions, new requirements, bugs)
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
im using onnx model loaded through triton server ,
i get the metadata , but im not getting the bouding box . Could you please help
in the parser.py below output layers are added output, 573, 625, 677 ,
def nvds_infer_parse_custom_tf_ssd(output_layer_info, detection_param, box_size_param, nms_param=NmsParam()):
""" Get data from output_layer_info and fill object_list
with several NvDsInferObjectDetectionInfo.
Keyword arguments:
- output_layer_info : represents the neural network's output.
(NvDsInferLayerInfo list)
- detection_param : contains per class threshold.
(DetectionParam)
- box_size_param : element containing information to discard boxes
that are too small. (BoxSizeParam)
- nms_param : contains information for performing non maximal
suppression. (NmsParam)
Return:
- Bounding boxes. (NvDsInferObjectDetectionInfo list)
"""
num_detection_layer = layer_finder(output_layer_info, "output")
score_layer = layer_finder(output_layer_info, "573")
class_layer = layer_finder(output_layer_info, "625")
box_layer = layer_finder(output_layer_info, "677")