bump version to 4.8.0 (#190)
Browse files* 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
- CMakeLists.txt +1 -1
- demo.py +1 -1
CMakeLists.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
cmake_minimum_required(VERSION 3.24.0)
|
2 |
project(opencv_zoo_face_detection_yunet)
|
3 |
|
4 |
-
set(OPENCV_VERSION "4.
|
5 |
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
|
6 |
|
7 |
# Find OpenCV
|
|
|
1 |
cmake_minimum_required(VERSION 3.24.0)
|
2 |
project(opencv_zoo_face_detection_yunet)
|
3 |
|
4 |
+
set(OPENCV_VERSION "4.8.0")
|
5 |
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
|
6 |
|
7 |
# Find OpenCV
|
demo.py
CHANGED
@@ -12,7 +12,7 @@ import cv2 as cv
|
|
12 |
from yunet import YuNet
|
13 |
|
14 |
# Check OpenCV version
|
15 |
-
assert cv.__version__ >= "4.
|
16 |
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
|
17 |
|
18 |
# Valid combinations of backends and targets
|
|
|
12 |
from yunet import YuNet
|
13 |
|
14 |
# Check OpenCV version
|
15 |
+
assert cv.__version__ >= "4.8.0", \
|
16 |
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
|
17 |
|
18 |
# Valid combinations of backends and targets
|