incluit / OpenVino-Driver-Behaviour

Apache License 2.0
116 stars 37 forks source link

'CNNNetReader’ was not declared #16

Open MohammadAbadi-Conigital opened 2 years ago

MohammadAbadi-Conigital commented 2 years ago

During make the file, I have faced with this problem. In new openvino version CNNNetReader is removed. What should I do?

In member function ‘void CnnDLSDKBase::Load()’: OpenVino-Driver-Behaviour/src/cnn.cpp:25:5: error: ‘CNNNetReader’ was not declared in this scope OpenVino-Driver-Behaviour/src/cnn.cpp:26:5: error: ‘net_reader’ was not declared in this scope

in this part of the code:

void CnnDLSDKBase::Load() { CNNNetReader net_reader; netreader.ReadNetwork(config.path_to_model); netreader.ReadWeights(config.path_to_weights);