File tree Expand file tree Collapse file tree 6 files changed +28
-1
lines changed Expand file tree Collapse file tree 6 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 54
54
55
55
#ifdef HAVE_DNN_NGRAPH
56
56
#include " ../ie_ngraph.hpp"
57
+ #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
58
+ #include < ngraph/op/detection_output.hpp>
59
+ #else
57
60
#include < ngraph/op/experimental/layers/detection_output.hpp>
58
61
#endif
59
62
63
+ #endif
64
+
60
65
namespace cv
61
66
{
62
67
namespace dnn
Original file line number Diff line number Diff line change 48
48
49
49
#ifdef HAVE_DNN_NGRAPH
50
50
#include " ../ie_ngraph.hpp"
51
+ #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
52
+ #include < ngraph/op/roi_pooling.hpp>
53
+ #include < ngraph/op/psroi_pooling.hpp>
54
+ #else
51
55
#include < ngraph/op/experimental/layers/roi_pooling.hpp>
52
56
#include < ngraph/op/experimental/layers/psroi_pooling.hpp>
53
57
#endif
58
+ #endif
54
59
55
60
#include < float.h>
56
61
#include < algorithm>
Original file line number Diff line number Diff line change 46
46
47
47
#ifdef HAVE_DNN_NGRAPH
48
48
#include " ../ie_ngraph.hpp"
49
+ #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
50
+ #include < ngraph/op/prior_box.hpp>
51
+ #include < ngraph/op/prior_box_clustered.hpp>
52
+ #else
49
53
#include < ngraph/op/experimental/layers/prior_box.hpp>
50
54
#include < ngraph/op/experimental/layers/prior_box_clustered.hpp>
51
55
#endif
56
+ #endif
52
57
53
58
#include < float.h>
54
59
#include < algorithm>
Original file line number Diff line number Diff line change 10
10
11
11
#ifdef HAVE_DNN_NGRAPH
12
12
#include " ../ie_ngraph.hpp"
13
+ #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
14
+ #include < ngraph/op/proposal.hpp>
15
+ #else
13
16
#include < ngraph/op/experimental/layers/proposal.hpp>
14
17
#endif
18
+ #endif
15
19
16
20
namespace cv { namespace dnn {
17
21
Original file line number Diff line number Diff line change 41
41
//M*/
42
42
43
43
#include " ../precomp.hpp"
44
- #include " ../op_inf_engine.hpp"
45
44
46
45
#include < opencv2/dnn/shape_utils.hpp>
47
46
#include < opencv2/dnn/all_layers.hpp>
50
49
#include " opencl_kernels_dnn.hpp"
51
50
#endif
52
51
52
+ #include " ../op_inf_engine.hpp"
53
53
#ifdef HAVE_DNN_NGRAPH
54
54
#include " ../ie_ngraph.hpp"
55
+ #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
56
+ #include < ngraph/op/reorg_yolo.hpp>
57
+ #else
55
58
#include < ngraph/op/experimental/layers/reorg_yolo.hpp>
56
59
#endif
60
+ #endif
57
61
58
62
namespace cv
59
63
{
Original file line number Diff line number Diff line change 11
11
12
12
#ifdef HAVE_DNN_NGRAPH
13
13
#include " ../ie_ngraph.hpp"
14
+ #if INF_ENGINE_VER_MAJOR_GT(INF_ENGINE_RELEASE_2020_4)
15
+ #include < ngraph/op/interpolate.hpp>
16
+ #else
14
17
#include < ngraph/op/experimental/layers/interpolate.hpp>
15
18
#endif
19
+ #endif
16
20
17
21
namespace cv { namespace dnn {
18
22
You can’t perform that action at this time.
0 commit comments