Does the pyds api for Deepstream 5 expose the raw tensor data of output layers?

Hi,

Have you tried check our python sample first?
It includes some examples for accessing tensor data:

https://github.com/NVIDIA-AI-IOT/deepstream_python_apps/blob/2931f6b295b58aed15cb29074d13763c0f8d47be/apps/deepstream-ssd-parser/deepstream_ssd_parser.py#L273

 tensor_meta = pyds.NvDsInferTensorMeta.cast(user_meta.user_meta_data)

 # Boxes in the tensor meta should be in network resolution which is
 # found in tensor_meta.network_info. Use this info to scale boxes to
 # the input frame resolution.
 layers_info = []

 for i in range(tensor_meta.num_output_layers):
    layer = pyds.get_nvds_LayerInfo(tensor_meta, i)
    layers_info.append(layer)

Thanks.