Please provide complete information as applicable to your setup.
• Hardware Platform ( GPU)
• DeepStream Version5.0
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only) 440.64.00
I am trying to parse they meta data coming out of the https://github.com/NVIDIA-AI-IOT/deepstream_python_apps/tree/master/apps/deepstream-test2 example
I have removed the sgie2 and sgie3 elements and updated the sgie1 config file to the following
[property]
gpu-id=0
net-scale-factor=1
model-file=…/…/…/…/samples/models/Secondary_CarColor/resnet18.caffemodel
model-engine-file=…/…/…/…/samples/models/Secondary_CarColor/resnet18.caffemodel_b16_gpu0_int8.engine
proto-file=…/…/…/…/samples/models/Secondary_CarColor/resnet18.prototxt
mean-file=…/…/…/…/samples/models/Secondary_CarColor/mean.ppm
labelfile-path=…/…/…/…/samples/models/Secondary_CarColor/labels.txt
int8-calib-file=…/…/…/…/samples/models/Secondary_CarColor/cal_trt.bin
batch-size=14
# 0=FP32 and 1=INT8 mode
network-mode=1
input-object-min-width=0 #changed this
input-object-min-height=0 #changed this
process-mode=2
model-color-format=1
gpu-id=0
gie-unique-id=2
operate-on-gie-id=1
operate-on-class-ids=0
is-classifier=1
output-blob-names=predictions/Softmax
classifier-async-mode=1
classifier-threshold=0 #changed this
I want to be able to access secondory classifier inference on all objects in a frame
but for some reason
l_class=obj_meta.classifier_meta_list
returns None value for most objects of a particular class ( for e.g if 6 objects of class 0 are in a frame it will return Not None value for only 1/2 max)
How do you suggest changing the config to be able to access this for all objects in a frame?