I've managed to run the example python code at: https://docs.luxonis.com/software-v3/depthai/examples/detection_network/detection_network/#Detection%20network
I have a .blob file for a model that I want to run on the camera, but I can't get it to work. I've managed to get it to run but the camera feed is super slow and I'm not getting any neural network feedback. The model was trained with yolo v11. Here is the section of the code that I've modified. Thanks!
with dai.Pipeline() as pipeline:
cameraNode = pipeline.create(dai.node.Camera).build()
detectionNetwork = pipeline.create(dai.node.DetectionNetwork)
output = cameraNode.requestOutput((640, 640), dai.ImgFrame.Type.RGB888p)
output.link(detectionNetwork.input)
detectionNetwork.setBlobPath(BLOB_PATH)
labelMap = detectionNetwork.getClasses()
qRgb = detectionNetwork.passthrough.createOutputQueue()
qDet = detectionNetwork.out.createOutputQueue()
pipeline.start()