Update README.md
Browse files
README.md
CHANGED
|
@@ -6,43 +6,19 @@ pipeline_tag: image-to-image
|
|
| 6 |
# EDSR
|
| 7 |
AXERA version of the paper 'Enhanced Deep Residual Networks for Single Image Super-Resolution' (CVPRW 2017)
|
| 8 |
|
| 9 |
-
##
|
| 10 |
-
|
| 11 |
-
### x86 Build
|
| 12 |
-
|
| 13 |
-
```bash
|
| 14 |
-
git clone --recursive https://github.com/AXERA-TECH/libsr.axera.git
|
| 15 |
-
cd libsr.axera
|
| 16 |
-
sudo apt install libopencv-dev build-essential
|
| 17 |
-
./build.sh
|
| 18 |
```
|
| 19 |
-
|
| 20 |
-
### AArch64 Build
|
| 21 |
-
|
| 22 |
-
#### Cross-compile for aarch64
|
| 23 |
-
|
| 24 |
-
```bash
|
| 25 |
-
git clone --recursive https://github.com/AXERA-TECH/libsr.axera.git
|
| 26 |
-
cd libsr.axera
|
| 27 |
-
./build_aarch64.sh
|
| 28 |
```
|
| 29 |
-
|
| 30 |
-
#### Native Build on Target Board
|
| 31 |
-
|
| 32 |
-
```bash
|
| 33 |
-
git clone --recursive https://github.com/AXERA-TECH/libsr.axera.git
|
| 34 |
-
cd libsr.axera
|
| 35 |
-
sudo apt install libopencv-dev build-essential
|
| 36 |
-
./build.sh
|
| 37 |
-
```
|
| 38 |
-
---
|
| 39 |
-
|
| 40 |
-
## Demo
|
| 41 |
<p align="center">
|
| 42 |
<img src="Images/cat.jpg" width="45%">
|
| 43 |
<img src="Images/cat_x2.jpg" width="45%">
|
| 44 |
</p>
|
| 45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |

|
| 47 |
|
| 48 |
## Reference
|
|
|
|
| 6 |
# EDSR
|
| 7 |
AXERA version of the paper 'Enhanced Deep Residual Networks for Single Image Super-Resolution' (CVPRW 2017)
|
| 8 |
|
| 9 |
+
## Demo
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
```
|
| 11 |
+
python example.py --model edsr_x2_128.axmodel --img Images/cat.jpg
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
<p align="center">
|
| 14 |
<img src="Images/cat.jpg" width="45%">
|
| 15 |
<img src="Images/cat_x2.jpg" width="45%">
|
| 16 |
</p>
|
| 17 |
|
| 18 |
+
```
|
| 19 |
+
python gradio_example.py --model edsr_x2_128.axmodel
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |

|
| 23 |
|
| 24 |
## Reference
|