We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
I updated my code to use OpenVINO 2022.1 and now every time I run the script it says "Cached blob is invalid, will download a new one from API."
I am using the following code (essentially a modified version of the gen2-mjpeg-streaming demo):
# Start defining a pipeline pipeline = dai.Pipeline() pipeline.setOpenVINOVersion(version=dai.OpenVINO.Version.VERSION_2022_1) # Define a source - color camera colorCam = pipeline.create(dai.node.ColorCamera) if depth: mobilenet = pipeline.create(dai.node.MobileNetSpatialDetectionNetwork) monoLeft = pipeline.create(dai.node.MonoCamera) monoRight = pipeline.create(dai.node.MonoCamera) stereo = pipeline.create(dai.node.StereoDepth) else: mobilenet = pipeline.create(dai.node.MobileNetDetectionNetwork) colorCam.setPreviewSize(512, 512) colorCam.setResolution(dai.ColorCameraProperties.SensorResolution.THE_1080_P) colorCam.setInterleaved(False) colorCam.setColorOrder(dai.ColorCameraProperties.ColorOrder.BGR) mobilenet.setBlobPath(blobconverter.from_zoo("person-vehicle-bike-detection-crossroad-1016", shaves=6, version="2022.1")) mobilenet.setConfidenceThreshold(0.5) mobilenet.input.setBlocking(False)
Let me know if helpful to provide any other details!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
I updated my code to use OpenVINO 2022.1 and now every time I run the script it says "Cached blob is invalid, will download a new one from API."
I am using the following code (essentially a modified version of the gen2-mjpeg-streaming demo):
Let me know if helpful to provide any other details!
The text was updated successfully, but these errors were encountered: