I’m running the Rasperry PI detection net example. When i have the display connected the program works and runs smoothly as expected.
How can i run the program without using a display? Is this part of the gstreamer configuration or somewhere else ? I would basically just need the detected labels as well as the confidency value.
Welcome to the Hailo Community!
If you want to disable the video output you can simply replace the following code
f"fpsdisplaysink video-sink={self.video_sink} name=hailo_display sync={self.sync} text-overlay={self.options_menu.show_fps} signal-fps-measurements=true "
with
f"fakesink "
You can likely simplify the pipeline a little bit. But this is a simple change. The fakesink element will just discard the data at that point of the pipeline instead of displaying the video stream.