Fixed names conflict with dldt

This commit is contained in:
Nuzhny007 2019-06-27 13:13:48 +03:00
parent 24790e4061
commit 031e57b359
2 changed files with 2 additions and 2 deletions

View File

@ -476,7 +476,7 @@ bool InfEngineBackendNet::isInitialized()
return (bool)enginePtr;
}
void InfEngineBackendNet::addBlobs(const std::vector<Ptr<BackendWrapper> >& ptrs)
void InfEngineBackendNet::addBlobs(const std::vector<cv::Ptr<BackendWrapper> >& ptrs)
{
auto wrappers = infEngineWrappers(ptrs);
for (const auto& wrapper : wrappers)

View File

@ -84,7 +84,7 @@ public:
void initPlugin(InferenceEngine::ICNNNetwork& net);
void addBlobs(const std::vector<Ptr<BackendWrapper> >& ptrs);
void addBlobs(const std::vector<cv::Ptr<BackendWrapper> >& ptrs);
private:
InferenceEngine::Builder::Network netBuilder;