Commit
·
5201abb
1
Parent(s):
f622406
Bump version 4.9 (#222)
Browse files* update benchmark results on i7-12700K
* update benchmark results on edge2
* add benchmark results on Horizon Sunrise X3 PI
* add benchmark results on Jetson Nano B01 (CPU)
* add benchmark results on Raspberry Pi 4B
* add benchmark results on Jetson Nano B01 (GPU)
* add MAIX-III and StarFive benchmark results
* update benchmark results on Khadas VIM3
* update hardware setup info
* bump opencv version requirement to 4.9.0
* update benchmark results on RV1126
* regenerate table
* change * to x in input size text
* regenerate table
* rollback for '\\*'
* regenerate table
* add description for atlas 200i dk a2
* tune table
---------
Co-authored-by: Wanli <[email protected]>
- CMakeLists.txt +1 -1
- demo.py +1 -1
CMakeLists.txt
CHANGED
@@ -3,7 +3,7 @@ set(project_name "opencv_zoo_text_detection_ppocr")
|
|
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.9.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
@@ -12,7 +12,7 @@ import cv2 as cv
|
|
12 |
from ppocr_det import PPOCRDet
|
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 ppocr_det import PPOCRDet
|
13 |
|
14 |
# Check OpenCV version
|
15 |
+
assert cv.__version__ >= "4.9.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
|