Skip to content

Commit 0d61961

Browse files
authored
bump version to 4.8.0 (#190)
* bump version to 4.8.0 * update benchmark results on i7 & rpi * correct python command on i7 * update results on jetson nano * update results on atlas 200 cpu * update results on vim3 cpu, sunrise x3 cpu * update results on vim3 npu * update results on edge2 * update results on rv1126 and vision2 * update results on axp * update table
1 parent f872270 commit 0d61961

File tree

27 files changed

+1001
-988
lines changed

27 files changed

+1001
-988
lines changed

benchmark/README.md

Lines changed: 471 additions & 458 deletions
Large diffs are not rendered by default.

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.7.0", \
12+
assert cv.__version__ >= "4.8.0", \
1313
"Please install latest opencv-python for benchmark: python3 -m pip install --upgrade opencv-python"
1414

1515
# Valid combinations of backends and targets

benchmark/color_table.svg

Lines changed: 505 additions & 505 deletions
Loading

benchmark/table_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Devices:
216216

217217
- name: "Atlas 200 DK"
218218
display_info: "Atlas 200 DK\nAscend 310\nNPU"
219-
platform: "NPU"
219+
platform: "NPU (CANN)"
220220

221221
Suffixes:
222222
- model: "MobileNet-V1"

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.7.0")
4+
set(OPENCV_VERSION "4.8.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.7.0", \
15+
assert cv.__version__ >= "4.8.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.7.0", \
19+
assert cv.__version__ >= "4.8.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/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.7.0", \
15+
assert cv.__version__ >= "4.8.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.7.0", \
13+
assert cv.__version__ >= "4.8.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/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.7.0", \
15+
assert cv.__version__ >= "4.8.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

0 commit comments

Comments
 (0)