Update app.py
Browse files
app.py
CHANGED
@@ -7,8 +7,7 @@ from PIL import Image
|
|
7 |
os.system("git clone https://github.com/codeslake/RefVSR.git")
|
8 |
os.chdir("RefVSR")
|
9 |
os.system("./install/install_cudnn113.sh")
|
10 |
-
|
11 |
-
os.system("wget https://www.dropbox.com/s/abydd1oczs1163l/Ref.png -O Ref.png")
|
12 |
|
13 |
os.mkdir("ckpt")
|
14 |
os.system("wget https://huggingface.co/spaces/codeslake/RefVSR/resolve/main/RefVSR_small_MFID_8K.pytorch -O ckpt/RefVSR_small_MFID_8K.pytorch")
|
@@ -20,16 +19,18 @@ sys.path.append("RefVSR")
|
|
20 |
LR_path = "test/RealMCVSR/test/HR/UW/0000"
|
21 |
Ref_path = "test/RealMCVSR/test/HR/W/0000"
|
22 |
Ref_path_T = "test/RealMCVSR/test/HR/T/0000"
|
|
|
|
|
|
|
|
|
23 |
os.makedirs(LR_path)
|
24 |
os.makedirs(Ref_path)
|
25 |
os.makedirs(Ref_path_T)
|
26 |
os.makedirs('result')
|
27 |
-
|
|
|
28 |
def resize(img):
|
29 |
-
|
30 |
-
#wpercent = (basewidth/float(img.size[0]))
|
31 |
-
#hsize = int((float(img.size[1])*float(wpercent)))
|
32 |
-
#img = img.resize((basewidth,hsize), Image.ANTIALIAS)
|
33 |
w = img.size[0]
|
34 |
h = img.size[1]
|
35 |
if max(h, w) > max_side:
|
@@ -37,7 +38,6 @@ def resize(img):
|
|
37 |
wsize=int(w*scale_ratio)
|
38 |
hsize=int(h*scale_ratio)
|
39 |
img = img.resize((wsize,hsize), Image.ANTIALIAS)
|
40 |
-
|
41 |
return img
|
42 |
|
43 |
def inference(LR, Ref):
|
@@ -72,7 +72,9 @@ article = "<p style='text-align: center'><b>To check the full capability of the
|
|
72 |
#Ref = resize(Image.open('Ref.png'))
|
73 |
#LR.save('LR.png')
|
74 |
#Ref.save('Ref.png')
|
|
|
|
|
75 |
|
76 |
-
examples=[[['
|
77 |
|
78 |
gr.Interface(inference,[gr.inputs.Image(type="pil"), gr.inputs.Image(type="pil")],gr.outputs.Image(type="file"),title=title,description=description,article=article,theme ="peach",examples=examples).launch(enable_queue=True)
|
|
|
7 |
os.system("git clone https://github.com/codeslake/RefVSR.git")
|
8 |
os.chdir("RefVSR")
|
9 |
os.system("./install/install_cudnn113.sh")
|
10 |
+
|
|
|
11 |
|
12 |
os.mkdir("ckpt")
|
13 |
os.system("wget https://huggingface.co/spaces/codeslake/RefVSR/resolve/main/RefVSR_small_MFID_8K.pytorch -O ckpt/RefVSR_small_MFID_8K.pytorch")
|
|
|
19 |
LR_path = "test/RealMCVSR/test/HR/UW/0000"
|
20 |
Ref_path = "test/RealMCVSR/test/HR/W/0000"
|
21 |
Ref_path_T = "test/RealMCVSR/test/HR/T/0000"
|
22 |
+
os.system("wget https://www.dropbox.com/s/xv6inxwy0so4ni0/LR.png -O {}/0000.png".format(LR_path))
|
23 |
+
os.system("wget https://www.dropbox.com/s/abydd1oczs1163l/Ref.png -O {}/0000.png".format(Ref_path))
|
24 |
+
os.system("wget https://www.dropbox.com/s/abydd1oczs1163l/Ref.png -O {}/0000.png".format(Ref_path_T))
|
25 |
+
|
26 |
os.makedirs(LR_path)
|
27 |
os.makedirs(Ref_path)
|
28 |
os.makedirs(Ref_path_T)
|
29 |
os.makedirs('result')
|
30 |
+
|
31 |
+
|
32 |
def resize(img):
|
33 |
+
max_side = 1024
|
|
|
|
|
|
|
34 |
w = img.size[0]
|
35 |
h = img.size[1]
|
36 |
if max(h, w) > max_side:
|
|
|
38 |
wsize=int(w*scale_ratio)
|
39 |
hsize=int(h*scale_ratio)
|
40 |
img = img.resize((wsize,hsize), Image.ANTIALIAS)
|
|
|
41 |
return img
|
42 |
|
43 |
def inference(LR, Ref):
|
|
|
72 |
#Ref = resize(Image.open('Ref.png'))
|
73 |
#LR.save('LR.png')
|
74 |
#Ref.save('Ref.png')
|
75 |
+
#Image.open('LR.png').save(os.path.join(LR_path, '0000.png'))
|
76 |
+
#Image.open('LR.png')
|
77 |
|
78 |
+
examples=[[[os.path.join(LR_path, '0000.png')], [os.path.join(Ref_path, '0000.png')]]]
|
79 |
|
80 |
gr.Interface(inference,[gr.inputs.Image(type="pil"), gr.inputs.Image(type="pil")],gr.outputs.Image(type="file"),title=title,description=description,article=article,theme ="peach",examples=examples).launch(enable_queue=True)
|