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
@@ -3,7 +3,7 @@ set(project_name "opencv_zoo_image_classification_mobilenet")
|
|
3 |
|
4 |
PROJECT (${project_name})
|
5 |
|
6 |
-
set(OPENCV_VERSION "4.
|
7 |
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
|
8 |
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
|
9 |
# Find OpenCV, you may need to set OpenCV_DIR variable
|
|
|
3 |
|
4 |
PROJECT (${project_name})
|
5 |
|
6 |
+
set(OPENCV_VERSION "4.8.0")
|
7 |
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
|
8 |
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
|
9 |
# Find OpenCV, you may need to set OpenCV_DIR variable
|
demo.py
CHANGED
@@ -6,7 +6,7 @@ import cv2 as cv
|
|
6 |
from mobilenet import MobileNet
|
7 |
|
8 |
# Check OpenCV version
|
9 |
-
assert cv.__version__ >= "4.
|
10 |
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
|
11 |
|
12 |
# Valid combinations of backends and targets
|
|
|
6 |
from mobilenet import MobileNet
|
7 |
|
8 |
# Check OpenCV version
|
9 |
+
assert cv.__version__ >= "4.8.0", \
|
10 |
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
|
11 |
|
12 |
# Valid combinations of backends and targets
|