Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ import torch
|
|
11 |
import cv2
|
12 |
import gradio as gr
|
13 |
|
14 |
-
#
|
15 |
if not os.path.exists('realesr-general-x4v3.pth'):
|
16 |
os.system("wget https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth -P .")
|
17 |
if not os.path.exists('GFPGANv1.2.pth'):
|
@@ -23,15 +23,16 @@ if not os.path.exists('GFPGANv1.4.pth'):
|
|
23 |
if not os.path.exists('RestoreFormer.pth'):
|
24 |
os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/RestoreFormer.pth -P .")
|
25 |
|
26 |
-
# Real-ESRGAN ๋ชจ๋ธ ์ด๊ธฐํ
|
27 |
model = SRVGGNetCompact(num_in_ch=3, num_out_ch=3, num_feat=64, num_conv=32, upscale=4, act_type='prelu')
|
28 |
model_path = 'realesr-general-x4v3.pth'
|
29 |
half = True if torch.cuda.is_available() else False
|
30 |
upsampler = RealESRGANer(scale=4, model_path=model_path, model=model, tile=0, tile_pad=10, pre_pad=0, half=half)
|
31 |
|
|
|
|
|
|
|
32 |
def upscaler(img, version, scale):
|
33 |
try:
|
34 |
-
# ์ด๋ฏธ์ง ๋ถ๋ฌ์ค๊ธฐ
|
35 |
img = cv2.imread(img, cv2.IMREAD_UNCHANGED)
|
36 |
if len(img.shape) == 3 and img.shape[2] == 4:
|
37 |
img_mode = 'RGBA'
|
@@ -45,7 +46,6 @@ def upscaler(img, version, scale):
|
|
45 |
if h < 300:
|
46 |
img = cv2.resize(img, (w * 2, h * 2), interpolation=cv2.INTER_LANCZOS4)
|
47 |
|
48 |
-
# ์ผ๊ตด ๋ณต์ ๋ชจ๋ธ ์ด๊ธฐํ (์ฝ๋์ ์ ํ๋ ๋ฒ์ : GFPGANv1.4 ๋ฑ)
|
49 |
face_enhancer = GFPGANer(
|
50 |
model_path=f'{version}.pth',
|
51 |
upscale=2,
|
@@ -60,13 +60,12 @@ def upscaler(img, version, scale):
|
|
60 |
print('์ค๋ฅ', error)
|
61 |
|
62 |
try:
|
63 |
-
|
64 |
-
if scale and scale != 2:
|
65 |
interpolation = cv2.INTER_AREA if scale < 2 else cv2.INTER_LANCZOS4
|
66 |
h, w = img.shape[0:2]
|
67 |
output = cv2.resize(output, (int(w * scale / 2), int(h * scale / 2)), interpolation=interpolation)
|
68 |
except Exception as error:
|
69 |
-
print('์๋ชป๋
|
70 |
|
71 |
output = cv2.cvtColor(output, cv2.COLOR_BGR2RGB)
|
72 |
return output
|
@@ -75,22 +74,20 @@ def upscaler(img, version, scale):
|
|
75 |
return None, None
|
76 |
|
77 |
if __name__ == "__main__":
|
78 |
-
title = "์ด๋ฏธ์ง
|
79 |
|
80 |
demo = gr.Interface(
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
allow_flagging="never"
|
93 |
-
)
|
94 |
|
95 |
demo.queue()
|
96 |
demo.launch()
|
|
|
11 |
import cv2
|
12 |
import gradio as gr
|
13 |
|
14 |
+
# ํ์ ๋ชจ๋ธ ๋ค์ด๋ก๋
|
15 |
if not os.path.exists('realesr-general-x4v3.pth'):
|
16 |
os.system("wget https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth -P .")
|
17 |
if not os.path.exists('GFPGANv1.2.pth'):
|
|
|
23 |
if not os.path.exists('RestoreFormer.pth'):
|
24 |
os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/RestoreFormer.pth -P .")
|
25 |
|
|
|
26 |
model = SRVGGNetCompact(num_in_ch=3, num_out_ch=3, num_feat=64, num_conv=32, upscale=4, act_type='prelu')
|
27 |
model_path = 'realesr-general-x4v3.pth'
|
28 |
half = True if torch.cuda.is_available() else False
|
29 |
upsampler = RealESRGANer(scale=4, model_path=model_path, model=model, tile=0, tile_pad=10, pre_pad=0, half=half)
|
30 |
|
31 |
+
# ์ด๋ฏธ์ง ์ ์ฅ ๋๋ ํ ๋ฆฌ ์์ฑ (ํ์์ ์ฃผ์ ํด์ )
|
32 |
+
# os.makedirs('output', exist_ok=True)
|
33 |
+
|
34 |
def upscaler(img, version, scale):
|
35 |
try:
|
|
|
36 |
img = cv2.imread(img, cv2.IMREAD_UNCHANGED)
|
37 |
if len(img.shape) == 3 and img.shape[2] == 4:
|
38 |
img_mode = 'RGBA'
|
|
|
46 |
if h < 300:
|
47 |
img = cv2.resize(img, (w * 2, h * 2), interpolation=cv2.INTER_LANCZOS4)
|
48 |
|
|
|
49 |
face_enhancer = GFPGANer(
|
50 |
model_path=f'{version}.pth',
|
51 |
upscale=2,
|
|
|
60 |
print('์ค๋ฅ', error)
|
61 |
|
62 |
try:
|
63 |
+
if scale != 2:
|
|
|
64 |
interpolation = cv2.INTER_AREA if scale < 2 else cv2.INTER_LANCZOS4
|
65 |
h, w = img.shape[0:2]
|
66 |
output = cv2.resize(output, (int(w * scale / 2), int(h * scale / 2)), interpolation=interpolation)
|
67 |
except Exception as error:
|
68 |
+
print('์๋ชป๋ ์ฌ์ค์ผ์ผ๋ง ์
๋ ฅ.', error)
|
69 |
|
70 |
output = cv2.cvtColor(output, cv2.COLOR_BGR2RGB)
|
71 |
return output
|
|
|
74 |
return None, None
|
75 |
|
76 |
if __name__ == "__main__":
|
77 |
+
title = "์ด๋ฏธ์ง ์
์ค์ผ์ผ ๋ฐ ๋ณต์ [GFPGAN ์๊ณ ๋ฆฌ์ฆ]"
|
78 |
|
79 |
demo = gr.Interface(
|
80 |
+
upscaler, [
|
81 |
+
gr.Image(type="filepath", label="์
๋ ฅ"),
|
82 |
+
gr.Radio(['GFPGANv1.2', 'GFPGANv1.3', 'GFPGANv1.4', 'RestoreFormer'], type="value", label="๋ฒ์ ", value="GFPGANv1.4", visible=False),
|
83 |
+
gr.Number(label="์ฌ์ค์ผ์ผ๋ง ๊ณ์", value=0, visible=False),
|
84 |
+
], [
|
85 |
+
gr.Image(type="numpy", label="์ถ๋ ฅ"),
|
86 |
+
],
|
87 |
+
title=title,
|
88 |
+
examples=[["์์ .png", "GFPGANv1.4", 0]],
|
89 |
+
allow_flagging="never"
|
90 |
+
)
|
|
|
|
|
91 |
|
92 |
demo.queue()
|
93 |
demo.launch()
|