Hello! New to the world of computing/programming so please excuse me if any information is missing.
So I started with a set of generated images on Roboflow as a train/val/test dataset or annotated images.
These I trained on Ultralytics and then evaluated.
From here, I was able to output to a variety of file formats including .pt, .onnx, and .xml/.bin
I found the .onnx output was the easiet with this code:
`import blobconverter
blob_path = blobconverter.from_onnx(
model="/path/to/model.onnx",
data_type="FP16",
shaves=5,
)`
The model I'm trying to make is a simple object detection model but I'm a little stuck now. What do I do with the .blob file to run it on the Luxonis Oak-1?
Any help would be appreciated.