The TinyYolo example has a linking part of:
Linking
camRgb.preview.link(detectionNetwork.input)
if syncNN:
detectionNetwork.passthrough.link(xoutRgb.input)
else:
camRgb.preview.link(xoutRgb.input)
detectionNetwork.out.link(nnOut.input)
which lead me to a XLinkOut error, then i change it to:
camRgb.preview.link(detectionNetwork.input)
Create Outputs
xoutRgb = pipeline.createXLinkOut()
xoutRgb.setStreamName("rgb")
camRgb.preview.link(xoutRgb.input)
nnOut = pipeline.createXLinkOut()
nnOut.setStreamName("nn")
detectionNetwork.out.link(nnOut.input)
after changing the program would run but will immediately stop without error.
The blob file I used is the blob provided. Thanks a lot !