Jacobmadwed commited on
Commit
27f8806
·
verified ·
1 Parent(s): d7ec0f6

Upload 5 files

Browse files
Files changed (5) hide show
  1. README.md +13 -3
  2. app.py +153 -0
  3. fix_basicsr_import.py +20 -0
  4. packages.txt +3 -0
  5. requirements.txt +13 -0
README.md CHANGED
@@ -1,3 +1,13 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: GFPGAN
3
+ emoji: 😁
4
+ colorFrom: yellow
5
+ colorTo: green
6
+ sdk: gradio
7
+ sdk_version: 3.26.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: apache-2.0
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ # Fix basicsr import issue
4
+ os.system("python fix_basicsr_import.py")
5
+
6
+ import cv2
7
+ import gradio as gr
8
+ import torch
9
+ from basicsr.archs.srvgg_arch import SRVGGNetCompact
10
+ from gfpgan.utils import GFPGANer
11
+ from realesrgan.utils import RealESRGANer
12
+
13
+ os.system("pip freeze")
14
+ # download weights
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'):
18
+ os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.2.pth -P .")
19
+ if not os.path.exists('GFPGANv1.3.pth'):
20
+ os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth -P .")
21
+ if not os.path.exists('GFPGANv1.4.pth'):
22
+ os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth -P .")
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
+ if not os.path.exists('CodeFormer.pth'):
26
+ os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/CodeFormer.pth -P .")
27
+
28
+ torch.hub.download_url_to_file(
29
+ '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',
30
+ 'lincoln.jpg')
31
+ torch.hub.download_url_to_file(
32
+ 'https://user-images.githubusercontent.com/17445847/187400315-87a90ac9-d231-45d6-b377-38702bd1838f.jpg',
33
+ 'AI-generate.jpg')
34
+ torch.hub.download_url_to_file(
35
+ 'https://user-images.githubusercontent.com/17445847/187400981-8a58f7a4-ef61-42d9-af80-bc6234cef860.jpg',
36
+ 'Blake_Lively.jpg')
37
+ torch.hub.download_url_to_file(
38
+ 'https://user-images.githubusercontent.com/17445847/187401133-8a3bf269-5b4d-4432-b2f0-6d26ee1d3307.png',
39
+ '10045.png')
40
+
41
+ # background enhancer with RealESRGAN
42
+ model = SRVGGNetCompact(num_in_ch=3, num_out_ch=3, num_feat=64, num_conv=32, upscale=4, act_type='prelu')
43
+ model_path = 'realesr-general-x4v3.pth'
44
+ half = True if torch.cuda.is_available() else False
45
+ upsampler = RealESRGANer(scale=4, model_path=model_path, model=model, tile=0, tile_pad=10, pre_pad=0, half=half)
46
+
47
+ os.makedirs('output', exist_ok=True)
48
+
49
+
50
+ # def inference(img, version, scale, weight):
51
+ def inference(img, version, scale):
52
+ # weight /= 100
53
+ print(img, version, scale)
54
+ if scale > 4:
55
+ scale = 4 # avoid too large scale value
56
+ try:
57
+ extension = os.path.splitext(os.path.basename(str(img)))[1]
58
+ img = cv2.imread(img, cv2.IMREAD_UNCHANGED)
59
+ if len(img.shape) == 3 and img.shape[2] == 4:
60
+ img_mode = 'RGBA'
61
+ elif len(img.shape) == 2: # for gray inputs
62
+ img_mode = None
63
+ img = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
64
+ else:
65
+ img_mode = None
66
+
67
+ h, w = img.shape[0:2]
68
+ if h > 3500 or w > 3500:
69
+ print('too large size')
70
+ return None, None
71
+
72
+ if h < 300:
73
+ img = cv2.resize(img, (w * 2, h * 2), interpolation=cv2.INTER_LANCZOS4)
74
+
75
+ if version == 'v1.2':
76
+ face_enhancer = GFPGANer(
77
+ model_path='GFPGANv1.2.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
78
+ elif version == 'v1.3':
79
+ face_enhancer = GFPGANer(
80
+ model_path='GFPGANv1.3.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
81
+ elif version == 'v1.4':
82
+ face_enhancer = GFPGANer(
83
+ model_path='GFPGANv1.4.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
84
+ elif version == 'RestoreFormer':
85
+ face_enhancer = GFPGANer(
86
+ model_path='RestoreFormer.pth', upscale=2, arch='RestoreFormer', channel_multiplier=2, bg_upsampler=upsampler)
87
+ # elif version == 'CodeFormer':
88
+ # face_enhancer = GFPGANer(
89
+ # model_path='CodeFormer.pth', upscale=2, arch='CodeFormer', channel_multiplier=2, bg_upsampler=upsampler)
90
+
91
+ try:
92
+ # _, _, output = face_enhancer.enhance(img, has_aligned=False, only_center_face=False, paste_back=True, weight=weight)
93
+ _, _, output = face_enhancer.enhance(img, has_aligned=False, only_center_face=False, paste_back=True)
94
+ except RuntimeError as error:
95
+ print('Error', error)
96
+
97
+ try:
98
+ if scale != 2:
99
+ interpolation = cv2.INTER_AREA if scale < 2 else cv2.INTER_LANCZOS4
100
+ h, w = img.shape[0:2]
101
+ output = cv2.resize(output, (int(w * scale / 2), int(h * scale / 2)), interpolation=interpolation)
102
+ except Exception as error:
103
+ print('wrong scale input.', error)
104
+ if img_mode == 'RGBA': # RGBA images should be saved in png format
105
+ extension = 'png'
106
+ else:
107
+ extension = 'jpg'
108
+ save_path = f'output/out.{extension}'
109
+ cv2.imwrite(save_path, output)
110
+
111
+ output = cv2.cvtColor(output, cv2.COLOR_BGR2RGB)
112
+ return output, save_path
113
+ except Exception as error:
114
+ print('global exception', error)
115
+ return None, None
116
+
117
+
118
+ title = "GFPGAN: Practical Face Restoration Algorithm"
119
+ 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>
120
+ It can be used to restore your **old photos** or improve **AI-generated faces**.<br>
121
+ To use it, simply upload your image.<br>
122
+ 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 😊
123
+ """
124
+ article = r"""
125
+
126
+ [![download](https://img.shields.io/github/downloads/TencentARC/GFPGAN/total.svg)](https://github.com/TencentARC/GFPGAN/releases)
127
+ [![GitHub Stars](https://img.shields.io/github/stars/TencentARC/GFPGAN?style=social)](https://github.com/TencentARC/GFPGAN)
128
+ [![arXiv](https://img.shields.io/badge/arXiv-Paper-<COLOR>.svg)](https://arxiv.org/abs/2101.04061)
129
+
130
+ If you have any question, please email 📧 `xintao.wang@outlook.com` or `xintaowang@tencent.com`.
131
+
132
+ <center><img src='https://visitor-badge.glitch.me/badge?page_id=akhaliq_GFPGAN' alt='visitor badge'></center>
133
+ <center><img src='https://visitor-badge.glitch.me/badge?page_id=Gradio_Xintao_GFPGAN' alt='visitor badge'></center>
134
+ """
135
+ demo = gr.Interface(
136
+ inference, [
137
+ gr.Image(type="filepath", label="Input"),
138
+ # gr.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer', 'CodeFormer'], type="value", value='v1.4', label='version'),
139
+ gr.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer'], type="value", value='v1.4', label='version'),
140
+ gr.Number(label="Rescaling factor", value=2),
141
+ # gr.Slider(0, 100, label='Weight, only for CodeFormer. 0 for better quality, 100 for better identity', value=50)
142
+ ], [
143
+ gr.Image(type="numpy", label="Output (The whole image)"),
144
+ gr.File(label="Download the output image")
145
+ ],
146
+ title=title,
147
+ description=description,
148
+ article=article,
149
+ # examples=[['AI-generate.jpg', 'v1.4', 2, 50], ['lincoln.jpg', 'v1.4', 2, 50], ['Blake_Lively.jpg', 'v1.4', 2, 50],
150
+ # ['10045.png', 'v1.4', 2, 50]]).launch()
151
+ examples=[['AI-generate.jpg', 'v1.4', 2], ['lincoln.jpg', 'v1.4', 2], ['Blake_Lively.jpg', 'v1.4', 2],
152
+ ['10045.png', 'v1.4', 2]])
153
+ demo.queue().launch()
fix_basicsr_import.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ def fix_basicsr_import():
4
+ file_path = os.path.join(os.path.dirname(os.__file__), 'site-packages/basicsr/data/degradations.py')
5
+
6
+ if os.path.exists(file_path):
7
+ with open(file_path, "r") as file:
8
+ data = file.read()
9
+
10
+ data = data.replace("from torchvision.transforms.functional_tensor import rgb_to_grayscale",
11
+ "from torchvision.transforms.functional import rgb_to_grayscale")
12
+
13
+ with open(file_path, "w") as file:
14
+ file.write(data)
15
+
16
+ print("Fixed basicsr import issue.")
17
+ else:
18
+ print(f"File {file_path} does not exist. Please check the path.")
19
+
20
+ fix_basicsr_import()
packages.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ffmpeg
2
+ libsm6
3
+ libxext6
requirements.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ torch>=1.7.1
2
+ torchvision>=0.8.2
3
+ basicsr>=1.4.2
4
+ facexlib>=0.2.5
5
+ gfpgan>=1.3.7
6
+ realesrgan>=0.2.5
7
+ numpy
8
+ opencv-python
9
+ scipy
10
+ tqdm
11
+ lmdb
12
+ pyyaml
13
+ yapf