Question/Issue:
failed classification the result bounding box is always []
Project ID:
https://studio.edgeimpulse.com/studio/510570/impulse/8/deployment
Context/Use case:
hi All, i try use raspberry pi 5 and camera module v3 with this code:
and this model
https://studio.edgeimpulse.com/studio/510570/impulse/8/deployment
i modify the code to:
model_file = “modelfile.eim” # Trained ML model from Edge Impulse
draw_fps = True # Draw FPS on screen
res_width = 96 # Resolution of camera (width)
res_height = 96 # Resolution of camera (height)
rotation = 0 # Camera rotation (0, 90, 180, or 270)
cam_format = “RGB888” # Color format
img_width = 96 # Resize width to this for inference
img_height = 96 # Resize height to this for inference
and i think the code if use my model is failed to classification with this results:
res {‘result’: {‘bounding_boxes’: []}, ‘timing’: {‘anomaly’: 0, ‘classification’: 1, ‘dsp’: 0, ‘json’: 1, ‘stdin’: 7}}
the bounding_box is always return []
Is there any wrong configuration?
here is my full code inference_raspi_5 - Pastebin.com
maybe @louis or @Eoin can help me?
Thank you