diff --git a/modules/dnn/src/ie_ngraph.cpp b/modules/dnn/src/ie_ngraph.cpp index be9022d87e..3754e45c28 100644 --- a/modules/dnn/src/ie_ngraph.cpp +++ b/modules/dnn/src/ie_ngraph.cpp @@ -323,7 +323,14 @@ void InfEngineNgraphNet::initPlugin(InferenceEngine::CNNNetwork& net) } // Some of networks can work without a library of extra layers. // OpenCV fallbacks as extensions. - ie.AddExtension(std::make_shared(), "CPU"); + try + { + ie.AddExtension(std::make_shared(), "CPU"); + } + catch(const std::exception& e) + { + CV_LOG_INFO(NULL, "DNN-IE: Can't register OpenCV custom layers extension: " << e.what()); + } #ifndef _WIN32 // Limit the number of CPU threads. if (device_name == "CPU") diff --git a/modules/dnn/src/op_inf_engine.cpp b/modules/dnn/src/op_inf_engine.cpp index 58a6d7850e..2dd66121bf 100644 --- a/modules/dnn/src/op_inf_engine.cpp +++ b/modules/dnn/src/op_inf_engine.cpp @@ -739,7 +739,14 @@ void InfEngineBackendNet::initPlugin(InferenceEngine::CNNNetwork& net) // Some of networks can work without a library of extra layers. #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2019R1) // OpenCV fallbacks as extensions. - ie.AddExtension(std::make_shared(), "CPU"); + try + { + ie.AddExtension(std::make_shared(), "CPU"); + } + catch(const std::exception& e) + { + CV_LOG_INFO(NULL, "DNN-IE: Can't register OpenCV custom layers extension: " << e.what()); + } #endif #ifndef _WIN32 // Limit the number of CPU threads.