mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 14:13:15 +08:00
Fixed header paths for some nGraph ops
* Added dependency on IE version
backport of commit: 992c908b56
This commit is contained in:
parent
65dbbf712d
commit
d69a7a3bbf
@ -54,9 +54,14 @@
|
||||
|
||||
#ifdef HAVE_DNN_NGRAPH
|
||||
#include "../ie_ngraph.hpp"
|
||||
#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
|
||||
#include <ngraph/op/detection_output.hpp>
|
||||
#else
|
||||
#include <ngraph/op/experimental/layers/detection_output.hpp>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
namespace cv
|
||||
{
|
||||
namespace dnn
|
||||
|
@ -48,9 +48,14 @@
|
||||
|
||||
#ifdef HAVE_DNN_NGRAPH
|
||||
#include "../ie_ngraph.hpp"
|
||||
#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
|
||||
#include <ngraph/op/roi_pooling.hpp>
|
||||
#include <ngraph/op/psroi_pooling.hpp>
|
||||
#else
|
||||
#include <ngraph/op/experimental/layers/roi_pooling.hpp>
|
||||
#include <ngraph/op/experimental/layers/psroi_pooling.hpp>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <float.h>
|
||||
#include <algorithm>
|
||||
|
@ -46,9 +46,14 @@
|
||||
|
||||
#ifdef HAVE_DNN_NGRAPH
|
||||
#include "../ie_ngraph.hpp"
|
||||
#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
|
||||
#include <ngraph/op/prior_box.hpp>
|
||||
#include <ngraph/op/prior_box_clustered.hpp>
|
||||
#else
|
||||
#include <ngraph/op/experimental/layers/prior_box.hpp>
|
||||
#include <ngraph/op/experimental/layers/prior_box_clustered.hpp>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <float.h>
|
||||
#include <algorithm>
|
||||
|
@ -10,8 +10,12 @@
|
||||
|
||||
#ifdef HAVE_DNN_NGRAPH
|
||||
#include "../ie_ngraph.hpp"
|
||||
#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
|
||||
#include <ngraph/op/proposal.hpp>
|
||||
#else
|
||||
#include <ngraph/op/experimental/layers/proposal.hpp>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace cv { namespace dnn {
|
||||
|
||||
|
@ -41,7 +41,6 @@
|
||||
//M*/
|
||||
|
||||
#include "../precomp.hpp"
|
||||
#include "../op_inf_engine.hpp"
|
||||
|
||||
#include <opencv2/dnn/shape_utils.hpp>
|
||||
#include <opencv2/dnn/all_layers.hpp>
|
||||
@ -50,10 +49,15 @@
|
||||
#include "opencl_kernels_dnn.hpp"
|
||||
#endif
|
||||
|
||||
#include "../op_inf_engine.hpp"
|
||||
#ifdef HAVE_DNN_NGRAPH
|
||||
#include "../ie_ngraph.hpp"
|
||||
#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
|
||||
#include <ngraph/op/reorg_yolo.hpp>
|
||||
#else
|
||||
#include <ngraph/op/experimental/layers/reorg_yolo.hpp>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace cv
|
||||
{
|
||||
|
@ -11,8 +11,12 @@
|
||||
|
||||
#ifdef HAVE_DNN_NGRAPH
|
||||
#include "../ie_ngraph.hpp"
|
||||
#if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
|
||||
#include <ngraph/op/interpolate.hpp>
|
||||
#else
|
||||
#include <ngraph/op/experimental/layers/interpolate.hpp>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace cv { namespace dnn {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user