Hello guys I’m newbie working with hailo8L and raspberry pi 5. Currently I’m facing a very slow rendering display while attempting to detect persons. I need to use the following coco detection model because its useful for the purpose of getting track id’s
person_detection_model_path = "yolo11n_silu_coco--640x640_quant_hailort_hailo8l_1"
person_detection_model = dg.load_model(
model_name=person_detection_model_path,
inference_host_address=inference_host_address,
zoo_url=zoo_url,
overlay_color=(0, 255, 0),
output_class_set={"person"}
)
with degirum_tools.Display("AI Camera") as output_display:
for inference_result in degirum_tools.predict_stream(person_detection_model, video_source):
output_display.show(inference_result)
@user83
Once a model is compiled for a certain input size, you cannot change the input size. If you want to run it with lower resolution, you need to recompile the model.
Hi @user83
Let us try to dig deeper to see why the performance is so low. Did you run Hailo’s benchmarking CLI to know the expected FPS? This is a good starting point for the investigation.