Hi robots,
Yes, you can detect barcodes on DepthAI, although it's not available out-of-the-box and will require some implementation and testing on your side. In general, I would suggest trying one of these approaches:
- Use OpenCV and image processing to extract barcode position from image (tutorial here, it should be also doable to put the processing logic on the device itself using script node (example here, it's still under development and is soaking in)
- Train neural network to detect barcodes on the image - for this effort, you'd need a proper dataset and a training notebook. After a quick search, I found this repo and this benchmark that should be both helpful in acquiring the dataset. For the training itself, you can check out a similar QR-code detection tutorial and run it on our YoloV3 Colab notebook. You can also check custom training tutorials from RoboFlow and OpenCV