Merge pull request #25054 from TolyaTalamanov:at/gapi-lower-supported-ie-backend-version

G-API: Lower supported IE backend version #25054

Related to https://github.com/opencv/opencv/issues/25053

### Pull Request Readiness Checklist

See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request

- [x] I agree to contribute to the project under Apache 2 License.
- [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV
- [x] The PR is proposed to the proper branch
- [ ] There is a reference to the original bug report and related work
- [x] There is accuracy test, performance test and test data in opencv_extra repository, if applicable
      Patch to opencv_extra has the same branch name.
- [x] The feature is well documented and sample code can be built with the project CMake
pull/25060/head^2
Anatoliy Talamanov 9 months ago committed by GitHub
parent f0e3d2f2f8
commit 5fbf3d85bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      modules/gapi/src/backends/ie/giebackend.cpp
  2. 2
      modules/gapi/src/backends/ie/giebackend.hpp
  3. 2
      modules/gapi/src/backends/ie/giebackend/giewrapper.cpp
  4. 2
      modules/gapi/test/infer/gapi_infer_ie_test.cpp

@ -10,7 +10,7 @@
// (cv::gapi::ie::backend() is still there and is defined always)
#include "backends/ie/giebackend.hpp"
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2024000000
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2023010000
#if INF_ENGINE_RELEASE <= 2019010000
# error G-API IE module supports only OpenVINO IE >= 2019 R1

@ -10,7 +10,7 @@
// Include anyway - cv::gapi::ie::backend() still needs to be defined
#include "opencv2/gapi/infer/ie.hpp"
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2024000000
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2023010000
#include <ade/util/algorithm.hpp> // type_list_index
#include <condition_variable>

@ -4,7 +4,7 @@
//
// Copyright (C) 2020-2024 Intel Corporation
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2024000000
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2023010000
#include <vector>
#include <string>

@ -6,7 +6,7 @@
#include "../test_precomp.hpp"
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2024000000
#if defined HAVE_INF_ENGINE && INF_ENGINE_RELEASE < 2023010000
#include <stdexcept>
#include <mutex>

Loading…
Cancel
Save