+86-18555129021
contact@oakchina.cn

【56】[error] Neural network blob compiled with uncompatible openvino version.

【56】[error] Neural network blob compiled with uncompatible openvino version.

用不兼容的 openvino 版本编译的神经网络 blob。

[NeuralNetwork(2)] [error] Neural network blob compiled with uncompatible openvino version. Selected openvino version 2020.3. If you want to select an explicit openvino version use: setOpenVINOVersion while creating pipeline

出现此错误的原因是depthai无法从blob解析OpenVINO版本。解决方案很简单,用户必须指定编译blob的OpenVINO版本(如错误消息中所述):

pipeline = depthai.Pipeline()
# Set the correct version:
pipeline.setOpenVINOVersion(depthai.OpenVINO.Version.VERSION_2020_1)