Spaces:
Runtime error
Runtime error
Commit
·
dcc0b46
1
Parent(s):
27109fd
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,4 +10,19 @@ pinned: false
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
license: mit
|
| 11 |
---
|
| 12 |
|
| 13 |
+
This space is the demo for the EDSR (Enhanced Deep Residual Networks for Single Image Super-Resolution) model. This model surpassed the performace of the current available SOTA models.
|
| 14 |
+
|
| 15 |
+
Paper Link - https://arxiv.org/pdf/1707.02921
|
| 16 |
+
|
| 17 |
+
Keras Example link - https://keras.io/examples/vision/edsr/
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
TODO:
|
| 21 |
+
|
| 22 |
+
Hack to make this work for any image size. Currently the model takes input of image size 150 x 150.
|
| 23 |
+
We pad the input image with transparant pixels so that it is a square image, which is a multiple of 150 x 150
|
| 24 |
+
Then we chop the image into multiple 150 x 150 sub images
|
| 25 |
+
Upscale it and stich it together.
|
| 26 |
+
|
| 27 |
+
The output image might look a bit off, because each sub-image dosent have data about other sub-images.
|
| 28 |
+
This approach assumes that the subimage has enough data about its surroundings
|