MobileNetDetectionNetwork
MobileNet detection network node is very similar to NeuralNetwork (in fact it extends it). The only difference is that this node is specifically for the MobileNet NN and it decodes the result of the NN on device. This means thatout
of this node is not a byte array but a ImgDetections that can easily be used in your code.How to place it
Python
C++
Python
Python
1pipeline = dai.Pipeline()
2mobilenetDet = pipeline.create(dai.node.MobileNetDetectionNetwork)
Inputs and Outputs
Usage
Python
C++
Python
Python
1pipeline = dai.Pipeline()
2mobilenetDet = pipeline.create(dai.node.MobileNetDetectionNetwork)
3
4mobilenetDet.setConfidenceThreshold(0.5)
5mobilenetDet.setBlobPath(nnBlobPath)
6mobilenetDet.setNumInferenceThreads(2)
7mobilenetDet.input.setBlocking(False)
Examples of functionality
Reference
class
depthai.node.MobileNetDetectionNetwork(depthai.node.DetectionNetwork)
Need assistance?
Head over to Discussion Forum for technical support or any other questions you might have.