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
README.md
CHANGED
|
@@ -22,7 +22,7 @@ python demo.py --input /path/to/image -v
|
|
| 22 |
```
|
| 23 |
Note:
|
| 24 |
- image result saved as "result.jpg"
|
| 25 |
-
- this model requires `opencv-python>=4.
|
| 26 |
|
| 27 |
|
| 28 |
## Results
|
|
|
|
| 22 |
```
|
| 23 |
Note:
|
| 24 |
- image result saved as "result.jpg"
|
| 25 |
+
- this model requires `opencv-python>=4.8.0`
|
| 26 |
|
| 27 |
|
| 28 |
## Results
|
demo.py
CHANGED
|
@@ -5,7 +5,7 @@ import argparse
|
|
| 5 |
from yolox import YoloX
|
| 6 |
|
| 7 |
# Check OpenCV version
|
| 8 |
-
assert cv.__version__ >= "4.
|
| 9 |
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
|
| 10 |
|
| 11 |
# Valid combinations of backends and targets
|
|
|
|
| 5 |
from yolox import YoloX
|
| 6 |
|
| 7 |
# Check OpenCV version
|
| 8 |
+
assert cv.__version__ >= "4.8.0", \
|
| 9 |
"Please install latest opencv-python to try this demo: python3 -m pip install --upgrade opencv-python"
|
| 10 |
|
| 11 |
# Valid combinations of backends and targets
|