Hi,
I am using the latest version of JPS, which is 2.0.1, on the Orin AGX devkit with 64 GB and L4T 36.4. I am customizing JPS (AINVR) for License Plate Recognition (LPR), including vehicle detection, license plate detection (LPD), and Optical Character Recognition (OCR).
As a first step, I am running the YOLOv8 example without making any modifications to the DeepStream Docker. While I can see detections within the Region of Interest (ROI) or tripwire counts, I am unable to see the bounding box overlay. I have confirmed that different classes are detected using the Redis Message Broker.
I tried searching for solutions online and found a reply suggesting I use the ‘-t’ option. However, this did not resolve the issue, as nothing appeared. Can you help me figure out why the bounding box overlay isn’t showing?
Hey Kevin thanks for replying, I’ll add several debug things that might be helpful to investigate:
as you asked here is the vst output with overlays:
the modified vst_config, its under “/opt/nvidia/jetson/services/vst/config” vst_config.txt (7.3 KB)
“Detection events from DeepStream are outputted by the MessageBroker to the Redis test stream. The latest event can be viewed using the following command:”
sudo docker exec -it redis redis-cli/xinfo STREAM test`:
updated the deepstream command under (compose_agx_yolov8s.yaml):
command: sh -c ‘deepstream-test5-app -t -c /ds-config-files/yolov8s/yolov8s-ds-config_agx.txt 2>&1 | grep --line-buffered . | tee -a /log/deepstream.log’
In the previous version, the DeepStream output was accessible via localhost:8554 or 8555, and we could feed it to VST by adding ‘overlay’ to the name. However, these details seems to be removed from the documentation. Can you let me know how to access the DeepStream output now?
let me know if you need other outputs from my side,
Thanks!
Thanks, this works, and I can see the stream with the detection bounding boxes overlayed on an additional stream. However, this is more of a workaround and doesn’t utilize the existing features, like displaying ROI or the tripwire (see the screenshot below). I tried changing the sink type to “overlay” and “EglSink,” but that didn’t work. Can you help me enable the overlay feature on the original stream instead of seeing the stream with an additional RTSP feed?