未验证 提交 0d619617 编写于 作者: Y Yuantao Feng 提交者: GitHub

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
上级 f872270f
此差异已折叠。
......@@ -9,7 +9,7 @@ from models import MODELS
from utils import METRICS, DATALOADERS
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python for benchmark: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
因为 它太大了无法显示 source diff 。你可以改为 查看blob
......@@ -216,7 +216,7 @@ Devices:
- name: "Atlas 200 DK"
display_info: "Atlas 200 DK\nAscend 310\nNPU"
platform: "NPU"
platform: "NPU (CANN)"
Suffixes:
- model: "MobileNet-V1"
......
cmake_minimum_required(VERSION 3.24.0)
project(opencv_zoo_face_detection_yunet)
set(OPENCV_VERSION "4.7.0")
set(OPENCV_VERSION "4.8.0")
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
# Find OpenCV
......
......@@ -12,7 +12,7 @@ import cv2 as cv
from yunet import YuNet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -16,7 +16,7 @@ sys.path.append('../face_detection_yunet')
from yunet import YuNet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -12,7 +12,7 @@ sys.path.append('../face_detection_yunet')
from yunet import YuNet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -10,7 +10,7 @@ sys.path.append('../palm_detection_mediapipe')
from mp_palmdet import MPPalmDet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -12,7 +12,7 @@ import cv2 as cv
from pphumanseg import PPHumanSeg
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -3,7 +3,7 @@ set(project_name "opencv_zoo_image_classification_mobilenet")
PROJECT (${project_name})
set(OPENCV_VERSION "4.7.0")
set(OPENCV_VERSION "4.8.0")
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
# Find OpenCV, you may need to set OpenCV_DIR variable
......
......@@ -6,7 +6,7 @@ import cv2 as cv
from mobilenet import MobileNet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -12,7 +12,7 @@ import cv2 as cv
from ppresnet import PPResNet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -6,7 +6,7 @@ import cv2 as cv
from lpd_yunet import LPD_YuNet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -5,7 +5,7 @@ import argparse
from nanodet import NanoDet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -22,7 +22,7 @@ python demo.py --input /path/to/image -v
```
Note:
- image result saved as "result.jpg"
- this model requires `opencv-python>=4.7.0`
- this model requires `opencv-python>=4.8.0`
## Results
......
......@@ -5,7 +5,7 @@ import argparse
from yolox import YoloX
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -12,7 +12,7 @@ import cv2 as cv
from dasiamrpn import DaSiamRPN
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -6,7 +6,7 @@ import cv2 as cv
from mp_palmdet import MPPalmDet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -6,7 +6,7 @@ import cv2 as cv
from mp_persondet import MPPersonDet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -13,7 +13,7 @@ import cv2 as cv
from youtureid import YoutuReID
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -10,7 +10,7 @@ sys.path.append('../person_detection_mediapipe')
from mp_persondet import MPPersonDet
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -12,7 +12,7 @@ import cv2 as cv
from wechatqrcode import WeChatQRCode
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -3,7 +3,7 @@ set(project_name "opencv_zoo_text_detection_db")
PROJECT (${project_name})
set(OPENCV_VERSION "4.7.0")
set(OPENCV_VERSION "4.8.0")
set(OPENCV_INSTALLATION_PATH "" CACHE PATH "Where to look for OpenCV installation")
find_package(OpenCV ${OPENCV_VERSION} REQUIRED HINTS ${OPENCV_INSTALLATION_PATH})
# Find OpenCV, you may need to set OpenCV_DIR variable
......
......@@ -12,7 +12,7 @@ import cv2 as cv
from db import DB
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
......@@ -16,7 +16,7 @@ sys.path.append('../text_detection_db')
from db import DB
# Check OpenCV version
assert cv.__version__ >= "4.7.0", \
assert cv.__version__ >= "4.8.0", \
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
# Valid combinations of backends and targets
......
opencv-python>=4.7.0
opencv-python>=4.8.0
onnx
onnxruntime
onnxruntime-extensions
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册