Hi,
regarding deepstream development guide (link bellow)
in [Primary GIE and Secondary GIE group] you can find property key named [bbox-bg-color] in column [dGPU, Jetson
Both GIEs] you can find there is mentioned both GIEs so I understand that primary detector and secondary one (clasiffier) can use this property.
In my config file there is only primary-gie declared, because I don’t need secondary one.
But if I set in config file this property I get an error while application is running:
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
**PERF: 29.05 (29.78) 29.05 (29.78) 29.05 (29.78) 29.05 (29.78)
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
NvOsd ERR----line = 430 -2
I set this property in [primary-gie]
[primary-gie]
enable=1
gpu-id=0
model-engine-file=../../models/Primary_Detector_Nano/resnet10.caffemodel_b4_fp16.engine
batch-size=4
#Required by the app for OSD, not a plugin property
bbox-border-color0=1;0;0;1
bbox-border-color1=0;1;1;1
bbox-border-color2=0;0;1;1
bbox-border-color3=0;1;0;1
bbox-bg-color0=1;0;0;0.3
bbox-bg-color1=0;1;1;0.5
bbox-bg-color2=0;0;1;0.5
bbox-bg-color3=0;1;0;0.5
interval=2
gie-unique-id=1
nvbuf-memory-type=0
config-file=config_infer_primary_nano_test.txt
I’ve tried to set it after bbox-border-color property too, but no change:
bbox-border-color0=1;0;0;1
bbox-bg-color0=1;0;0;0.3
bbox-border-color1=0;1;1;1
bbox-bg-color1=0;1;1;0.5
bbox-border-color2=0;0;1;1
bbox-bg-color2=0;0;1;0.5
bbox-border-color3=0;1;0;1
bbox-bg-color3=0;1;0;0.5
It’s my mistake or it’s in manual or in SDK?