Update app.py
Browse files
app.py
CHANGED
|
@@ -23,17 +23,17 @@ if not os.path.exists('CodeFormer.pth'):
|
|
| 23 |
os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/CodeFormer.pth -P .")
|
| 24 |
|
| 25 |
torch.hub.download_url_to_file(
|
| 26 |
-
'https://
|
| 27 |
-
'
|
| 28 |
torch.hub.download_url_to_file(
|
| 29 |
-
'https://
|
| 30 |
-
'
|
| 31 |
torch.hub.download_url_to_file(
|
| 32 |
-
'https://
|
| 33 |
-
'
|
| 34 |
torch.hub.download_url_to_file(
|
| 35 |
-
'https://
|
| 36 |
-
'
|
| 37 |
|
| 38 |
# background enhancer with RealESRGAN
|
| 39 |
model = SRVGGNetCompact(num_in_ch=3, num_out_ch=3, num_feat=64, num_conv=32, upscale=4, act_type='prelu')
|
|
@@ -48,6 +48,8 @@ os.makedirs('output', exist_ok=True)
|
|
| 48 |
def inference(img, version, scale):
|
| 49 |
# weight /= 100
|
| 50 |
print(img, version, scale)
|
|
|
|
|
|
|
| 51 |
try:
|
| 52 |
extension = os.path.splitext(os.path.basename(str(img)))[1]
|
| 53 |
img = cv2.imread(img, cv2.IMREAD_UNCHANGED)
|
|
@@ -60,6 +62,10 @@ def inference(img, version, scale):
|
|
| 60 |
img_mode = None
|
| 61 |
|
| 62 |
h, w = img.shape[0:2]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
if h < 300:
|
| 64 |
img = cv2.resize(img, (w * 2, h * 2), interpolation=cv2.INTER_LANCZOS4)
|
| 65 |
|
|
@@ -75,12 +81,9 @@ def inference(img, version, scale):
|
|
| 75 |
elif version == 'RestoreFormer':
|
| 76 |
face_enhancer = GFPGANer(
|
| 77 |
model_path='RestoreFormer.pth', upscale=2, arch='RestoreFormer', channel_multiplier=2, bg_upsampler=upsampler)
|
| 78 |
-
elif version == 'CodeFormer':
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
elif version == 'RealESR-General-x4v3':
|
| 82 |
-
face_enhancer = GFPGANer(
|
| 83 |
-
model_path='realesr-general-x4v3.pth', upscale=2, arch='realesr-general', channel_multiplier=2, bg_upsampler=upsampler)
|
| 84 |
|
| 85 |
try:
|
| 86 |
# _, _, output = face_enhancer.enhance(img, has_aligned=False, only_center_face=False, paste_back=True, weight=weight)
|
|
@@ -109,34 +112,39 @@ def inference(img, version, scale):
|
|
| 109 |
return None, None
|
| 110 |
|
| 111 |
|
| 112 |
-
title = "
|
| 113 |
-
description = r"""Gradio demo for <a href='https://github.com/TencentARC/GFPGAN' target='_blank'><b>GFPGAN: Towards Real-World Blind Face Restoration
|
| 114 |
-
|
| 115 |
-
To use it, simply
|
|
|
|
| 116 |
"""
|
| 117 |
article = r"""
|
|
|
|
| 118 |
[](https://github.com/TencentARC/GFPGAN/releases)
|
| 119 |
[](https://github.com/TencentARC/GFPGAN)
|
| 120 |
[](https://arxiv.org/abs/2101.04061)
|
| 121 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 122 |
"""
|
| 123 |
demo = gr.Interface(
|
| 124 |
inference, [
|
| 125 |
-
gr.
|
| 126 |
-
# gr.
|
| 127 |
-
gr.
|
| 128 |
-
gr.
|
| 129 |
-
# gr.Slider(0, 100, label='Weight, only for CodeFormer. 0 for better quality, 100 for better identity',
|
| 130 |
], [
|
| 131 |
-
gr.
|
| 132 |
-
gr.
|
| 133 |
],
|
| 134 |
title=title,
|
| 135 |
description=description,
|
| 136 |
article=article,
|
| 137 |
# examples=[['AI-generate.jpg', 'v1.4', 2, 50], ['lincoln.jpg', 'v1.4', 2, 50], ['Blake_Lively.jpg', 'v1.4', 2, 50],
|
| 138 |
# ['10045.png', 'v1.4', 2, 50]]).launch()
|
| 139 |
-
examples=[['
|
| 140 |
-
|
| 141 |
-
demo.queue(
|
| 142 |
-
demo.launch()
|
|
|
|
| 23 |
os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/CodeFormer.pth -P .")
|
| 24 |
|
| 25 |
torch.hub.download_url_to_file(
|
| 26 |
+
'https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Abraham_Lincoln_O-77_matte_collodion_print.jpg/1024px-Abraham_Lincoln_O-77_matte_collodion_print.jpg',
|
| 27 |
+
'lincoln.jpg')
|
| 28 |
torch.hub.download_url_to_file(
|
| 29 |
+
'https://user-images.githubusercontent.com/17445847/187400315-87a90ac9-d231-45d6-b377-38702bd1838f.jpg',
|
| 30 |
+
'AI-generate.jpg')
|
| 31 |
torch.hub.download_url_to_file(
|
| 32 |
+
'https://user-images.githubusercontent.com/17445847/187400981-8a58f7a4-ef61-42d9-af80-bc6234cef860.jpg',
|
| 33 |
+
'Blake_Lively.jpg')
|
| 34 |
torch.hub.download_url_to_file(
|
| 35 |
+
'https://user-images.githubusercontent.com/17445847/187401133-8a3bf269-5b4d-4432-b2f0-6d26ee1d3307.png',
|
| 36 |
+
'10045.png')
|
| 37 |
|
| 38 |
# background enhancer with RealESRGAN
|
| 39 |
model = SRVGGNetCompact(num_in_ch=3, num_out_ch=3, num_feat=64, num_conv=32, upscale=4, act_type='prelu')
|
|
|
|
| 48 |
def inference(img, version, scale):
|
| 49 |
# weight /= 100
|
| 50 |
print(img, version, scale)
|
| 51 |
+
if scale > 4:
|
| 52 |
+
scale = 4 # avoid too large scale value
|
| 53 |
try:
|
| 54 |
extension = os.path.splitext(os.path.basename(str(img)))[1]
|
| 55 |
img = cv2.imread(img, cv2.IMREAD_UNCHANGED)
|
|
|
|
| 62 |
img_mode = None
|
| 63 |
|
| 64 |
h, w = img.shape[0:2]
|
| 65 |
+
if h > 3500 or w > 3500:
|
| 66 |
+
print('too large size')
|
| 67 |
+
return None, None
|
| 68 |
+
|
| 69 |
if h < 300:
|
| 70 |
img = cv2.resize(img, (w * 2, h * 2), interpolation=cv2.INTER_LANCZOS4)
|
| 71 |
|
|
|
|
| 81 |
elif version == 'RestoreFormer':
|
| 82 |
face_enhancer = GFPGANer(
|
| 83 |
model_path='RestoreFormer.pth', upscale=2, arch='RestoreFormer', channel_multiplier=2, bg_upsampler=upsampler)
|
| 84 |
+
# elif version == 'CodeFormer':
|
| 85 |
+
# face_enhancer = GFPGANer(
|
| 86 |
+
# model_path='CodeFormer.pth', upscale=2, arch='CodeFormer', channel_multiplier=2, bg_upsampler=upsampler)
|
|
|
|
|
|
|
|
|
|
| 87 |
|
| 88 |
try:
|
| 89 |
# _, _, output = face_enhancer.enhance(img, has_aligned=False, only_center_face=False, paste_back=True, weight=weight)
|
|
|
|
| 112 |
return None, None
|
| 113 |
|
| 114 |
|
| 115 |
+
title = "GFPGAN: Practical Face Restoration Algorithm"
|
| 116 |
+
description = r"""Gradio demo for <a href='https://github.com/TencentARC/GFPGAN' target='_blank'><b>GFPGAN: Towards Real-World Blind Face Restoration with Generative Facial Prior</b></a>.<br>
|
| 117 |
+
It can be used to restore your **old photos** or improve **AI-generated faces**.<br>
|
| 118 |
+
To use it, simply upload your image.<br>
|
| 119 |
+
If GFPGAN is helpful, please help to ⭐ the <a href='https://github.com/TencentARC/GFPGAN' target='_blank'>Github Repo</a> and recommend it to your friends 😊
|
| 120 |
"""
|
| 121 |
article = r"""
|
| 122 |
+
|
| 123 |
[](https://github.com/TencentARC/GFPGAN/releases)
|
| 124 |
[](https://github.com/TencentARC/GFPGAN)
|
| 125 |
[](https://arxiv.org/abs/2101.04061)
|
| 126 |
+
|
| 127 |
+
If you have any question, please email 📧 `[email protected]` or `[email protected]`.
|
| 128 |
+
|
| 129 |
+
<center><img src='https://visitor-badge.glitch.me/badge?page_id=akhaliq_GFPGAN' alt='visitor badge'></center>
|
| 130 |
+
<center><img src='https://visitor-badge.glitch.me/badge?page_id=Gradio_Xintao_GFPGAN' alt='visitor badge'></center>
|
| 131 |
"""
|
| 132 |
demo = gr.Interface(
|
| 133 |
inference, [
|
| 134 |
+
gr.Image(type="filepath", label="Input"),
|
| 135 |
+
# gr.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer', 'CodeFormer'], type="value", value='v1.4', label='version'),
|
| 136 |
+
gr.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer'], type="value", value='v1.4', label='version'),
|
| 137 |
+
gr.Number(label="Rescaling factor", value=2),
|
| 138 |
+
# gr.Slider(0, 100, label='Weight, only for CodeFormer. 0 for better quality, 100 for better identity', value=50)
|
| 139 |
], [
|
| 140 |
+
gr.Image(type="numpy", label="Output (The whole image)"),
|
| 141 |
+
gr.File(label="Download the output image")
|
| 142 |
],
|
| 143 |
title=title,
|
| 144 |
description=description,
|
| 145 |
article=article,
|
| 146 |
# examples=[['AI-generate.jpg', 'v1.4', 2, 50], ['lincoln.jpg', 'v1.4', 2, 50], ['Blake_Lively.jpg', 'v1.4', 2, 50],
|
| 147 |
# ['10045.png', 'v1.4', 2, 50]]).launch()
|
| 148 |
+
examples=[['AI-generate.jpg', 'v1.4', 2], ['lincoln.jpg', 'v1.4', 2], ['Blake_Lively.jpg', 'v1.4', 2],
|
| 149 |
+
['10045.png', 'v1.4', 2]])
|
| 150 |
+
demo.queue().launch()
|
|
|