Skip to content

Commit c1a15df

Browse files
committed
bump opencv version to 4.10.0
1 parent ec5b2c8 commit c1a15df

File tree

33 files changed

+33
-33
lines changed

33 files changed

+33
-33
lines changed

benchmark/benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from utils import METRICS, DATALOADERS
1010

1111
# Check OpenCV version
12-
assert cv.__version__ >= "4.9.0", \
12+
assert cv.__version__ >= "4.10.0", \
1313
"Please install latest opencv-python for benchmark: python3 -m pip install --upgrade opencv-python"
1414

1515
# Valid combinations of backends and targets

models/face_detection_yunet/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.24.0)
22
project(opencv_zoo_face_detection_yunet)
33

4-
set(OPENCV_VERSION "4.9.0")
4+
set(OPENCV_VERSION "4.10.0")
55
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
66

77
# Find OpenCV

models/face_detection_yunet/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from yunet import YuNet
1313

1414
# Check OpenCV version
15-
assert cv.__version__ >= "4.9.0", \
15+
assert cv.__version__ >= "4.10.0", \
1616
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
1717

1818
# Valid combinations of backends and targets

models/face_recognition_sface/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from yunet import YuNet
1717

1818
# Check OpenCV version
19-
assert cv.__version__ >= "4.9.0", \
19+
assert cv.__version__ >= "4.10.0", \
2020
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
2121

2222
# Valid combinations of backends and targets

models/facial_expression_recognition/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set(project_name "opencv_zoo_face_expression_recognition")
44

55
PROJECT (${project_name})
66

7-
set(OPENCV_VERSION "4.9.0")
7+
set(OPENCV_VERSION "4.10.0")
88
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
99
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
1010
# Find OpenCV, you may need to set OpenCV_DIR variable

models/facial_expression_recognition/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from yunet import YuNet
1313

1414
# Check OpenCV version
15-
assert cv.__version__ >= "4.9.0", \
15+
assert cv.__version__ >= "4.10.0", \
1616
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
1717

1818
# Valid combinations of backends and targets

models/handpose_estimation_mediapipe/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from mp_palmdet import MPPalmDet
1111

1212
# Check OpenCV version
13-
assert cv.__version__ >= "4.9.0", \
13+
assert cv.__version__ >= "4.10.0", \
1414
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
1515

1616
# Valid combinations of backends and targets

models/human_segmentation_pphumanseg/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set(project_name "opencv_zoo_human_segmentation")
44

55
PROJECT (${project_name})
66

7-
set(OPENCV_VERSION "4.9.0")
7+
set(OPENCV_VERSION "4.10.0")
88
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
99
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
1010
# Find OpenCV, you may need to set OpenCV_DIR variable

models/human_segmentation_pphumanseg/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from pphumanseg import PPHumanSeg
1313

1414
# Check OpenCV version
15-
assert cv.__version__ >= "4.9.0", \
15+
assert cv.__version__ >= "4.10.0", \
1616
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
1717

1818
# Valid combinations of backends and targets

models/image_classification_mobilenet/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(project_name "opencv_zoo_image_classification_mobilenet")
33

44
PROJECT (${project_name})
55

6-
set(OPENCV_VERSION "4.9.0")
6+
set(OPENCV_VERSION "4.10.0")
77
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
88
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
99
# Find OpenCV, you may need to set OpenCV_DIR variable

0 commit comments

Comments
 (0)