diff --git a/thirdparty/open_model_zoo b/thirdparty/open_model_zoo index 9609e476cc2a0f..1919ae9d42c19d 160000 --- a/thirdparty/open_model_zoo +++ b/thirdparty/open_model_zoo @@ -1 +1 @@ -Subproject commit 9609e476cc2a0f8f57cd374026a4267c8634fb4e +Subproject commit 1919ae9d42c19d8f3bafc2417256ab3a67b6db79 diff --git a/tools/benchmark_tool/requirements.txt b/tools/benchmark_tool/requirements.txt index 0d7c7abb9ea78b..e02018eb87af12 100644 --- a/tools/benchmark_tool/requirements.txt +++ b/tools/benchmark_tool/requirements.txt @@ -1,3 +1,4 @@ py-cpuinfo>=7.0.0 numpy>=1.16.6,<=1.23.1 -progress>=1.5 \ No newline at end of file +progress>=1.5 +opencv-python>=4.5 \ No newline at end of file diff --git a/tools/benchmark_tool/setup.py b/tools/benchmark_tool/setup.py index a0c333dc64bf47..30c8a33dbf9b96 100644 --- a/tools/benchmark_tool/setup.py +++ b/tools/benchmark_tool/setup.py @@ -8,9 +8,7 @@ $ python setup.py sdist bdist_wheel """ -import importlib import pkg_resources -import warnings from setuptools import setup, find_packages with open('README.md', 'r', encoding='utf-8') as f: @@ -23,14 +21,6 @@ in pkg_resources.parse_requirements(requirements_txt) ] -try: - importlib.import_module('cv2') -except ImportError as opencv_import_error: - warnings.warn( - "Problem with cv2 import: \n{}\n opencv-python-headless will be added to requirements".format(opencv_import_error) - ) - reqs.append('opencv-python-headless==4.5.*') - setup( name='benchmark_tool', version='0.0.0',