Hi guys!
I'm running mobilenet-SSD for object detections on Oak-D Lite's camera feed. Since there seems to be some lag, I want to skip frames to enable real-time detection. How do I do this?
I already tried setting neural nets input to non-blocking:
net = pipeline.create(dai.node.MobileNetDetectionNetwork)
net.input.setBlocking(False)
That doesn't seem to do the trick. I'm probably missing something in my understanding of pipeline creation then. Can someone please help me here?
Thanks!