jsaplication commited on
Commit
3c28963
1 Parent(s): f29292c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +36 -117
app.py CHANGED
@@ -1,137 +1,56 @@
1
  import os
2
-
3
  import cv2
4
- import gradio as gr
5
  import torch
6
- from basicsr.archs.srvgg_arch import SRVGGNetCompact
7
- from gfpgan.utils import GFPGANer
8
- from realesrgan.utils import RealESRGANer
 
 
 
 
9
 
10
- os.system("pip freeze")
11
- # download weights
12
- if not os.path.exists('realesr-general-x4v3.pth'):
13
- os.system("wget https://github.com/xinntao/Real-ESRGAN/releases/download/v0.2.5.0/realesr-general-x4v3.pth -P .")
14
- if not os.path.exists('GFPGANv1.2.pth'):
15
- os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.2.pth -P .")
16
- if not os.path.exists('GFPGANv1.3.pth'):
17
- os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth -P .")
18
- if not os.path.exists('GFPGANv1.4.pth'):
19
- os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.4.pth -P .")
20
- if not os.path.exists('RestoreFormer.pth'):
21
- os.system("wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.4/RestoreFormer.pth -P .")
22
- 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://thumbs.dreamstime.com/b/tower-bridge-traditional-red-bus-black-white-colors-view-to-tower-bridge-london-black-white-colors-108478942.jpg',
27
- 'a1.jpg')
28
- torch.hub.download_url_to_file(
29
- 'https://media.istockphoto.com/id/523514029/photo/london-skyline-b-w.jpg?s=612x612&w=0&k=20&c=kJS1BAtfqYeUDaORupj0sBPc1hpzJhBUUqEFfRnHzZ0=',
30
- 'a2.jpg')
31
- torch.hub.download_url_to_file(
32
- 'https://i.guim.co.uk/img/media/06f614065ed82ca0e917b149a32493c791619854/0_0_3648_2789/master/3648.jpg?width=700&quality=85&auto=format&fit=max&s=05764b507c18a38590090d987c8b6202',
33
- 'a3.jpg')
34
- torch.hub.download_url_to_file(
35
- 'https://i.pinimg.com/736x/46/96/9e/46969eb94aec2437323464804d27706d--victorian-london-victorian-era.jpg',
36
- 'a4.jpg')
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')
40
- model_path = 'realesr-general-x4v3.pth'
41
- half = True if torch.cuda.is_available() else False
42
- upsampler = RealESRGANer(scale=4, model_path=model_path, model=model, tile=0, tile_pad=10, pre_pad=0, half=half)
43
 
44
- os.makedirs('output', exist_ok=True)
 
45
 
 
46
 
47
- # def inference(img, version, scale, weight):
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)
54
- if len(img.shape) == 3 and img.shape[2] == 4:
55
- img_mode = 'RGBA'
56
- elif len(img.shape) == 2: # for gray inputs
57
- img_mode = None
58
- img = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
59
- else:
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
 
66
  if version == 'v1.2':
67
- face_enhancer = GFPGANer(
68
- model_path='GFPGANv1.2.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
69
  elif version == 'v1.3':
70
- face_enhancer = GFPGANer(
71
- model_path='GFPGANv1.3.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
72
  elif version == 'v1.4':
73
- face_enhancer = GFPGANer(
74
- model_path='GFPGANv1.4.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
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
- # face_enhancer = GFPGANer(
80
- # model_path='CodeFormer.pth', upscale=2, arch='CodeFormer', channel_multiplier=2, bg_upsampler=upsampler)
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)
87
- _, _, output = face_enhancer.enhance(img, has_aligned=False, only_center_face=False, paste_back=True)
88
- except RuntimeError as error:
89
- print('Error', error)
90
 
91
- try:
92
- if scale != 2:
93
- interpolation = cv2.INTER_AREA if scale < 2 else cv2.INTER_LANCZOS4
94
- h, w = img.shape[0:2]
95
- output = cv2.resize(output, (int(w * scale / 2), int(h * scale / 2)), interpolation=interpolation)
96
- except Exception as error:
97
- print('wrong scale input.', error)
98
- if img_mode == 'RGBA': # RGBA images should be saved in png format
99
- extension = 'png'
100
  else:
101
- extension = 'jpg'
102
- save_path = f'output/out.{extension}'
103
- cv2.imwrite(save_path, output)
104
-
105
- output = cv2.cvtColor(output, cv2.COLOR_BGR2RGB)
106
- return output, save_path
107
- except Exception as error:
108
- print('global exception', error)
109
- return None, None
110
-
111
 
112
- title = "JSPhoto Restauration"
113
- description = r"""Restaure suas fotos desfocadas e de péssima qualidade.<br>
114
- """
115
- article = r"""
116
 
117
- """
118
- demo = gr.Interface(
119
- inference, [
120
- gr.inputs.Image(type="filepath", label="Input"),
121
- # gr.inputs.Radio(['v1.2', 'v1.3', 'v1.4', 'RestoreFormer', 'CodeFormer'], type="value", default='v1.4', label='version'),
122
- gr.inputs.Radio(['v1.2', 'v1.3', 'v1.4'], type="value", default='v1.4', label='version'),
123
- gr.inputs.Number(label="Rescaling factor", default=2),
124
- # gr.Slider(0, 100, label='Weight, only for CodeFormer. 0 for better quality, 100 for better identity', default=50)
125
- ], [
126
- gr.outputs.Image(type="numpy", label="Output (The whole image)"),
127
- gr.outputs.File(label="Download the output image")
128
- ],
129
- title=title,
130
- description=description,
131
- article=article,
132
- # examples=[['AI-generate.jpg', 'v1.4', 2, 50], ['lincoln.jpg', 'v1.4', 2, 50], ['Blake_Lively.jpg', 'v1.4', 2, 50],
133
- # ['10045.png', 'v1.4', 2, 50]]).launch()
134
- examples=[])
135
-
136
- demo.queue(concurrency_count=4)
137
- demo.launch()
 
1
  import os
 
2
  import cv2
 
3
  import torch
4
+ from flask import Flask, request, jsonify, send_file
5
+
6
+ # Importe as classes e funções necessárias para seus modelos aqui
7
+
8
+ # Carregue os modelos
9
+ model_realesr = SRVGGNetCompact(num_in_ch=3, num_out_ch=3, num_feat=64, num_conv=32, upscale=4, act_type='prelu')
10
+ model_path_realesr = 'realesr-general-x4v3.pth'
11
 
12
+ model_gfpgan_1_2 = GFPGANer(model_path='GFPGANv1.2.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
13
+ model_gfpgan_1_3 = GFPGANer(model_path='GFPGANv1.3.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
14
+ model_gfpgan_1_4 = GFPGANer(model_path='GFPGANv1.4.pth', upscale=2, arch='clean', channel_multiplier=2, bg_upsampler=upsampler)
 
 
 
 
 
 
 
 
 
 
 
15
 
16
+ # Defina o modelo RestoreFormer se necessário
17
+ # model_restoreformer = ...
 
 
 
 
 
 
 
 
 
 
18
 
19
+ # Defina o modelo CodeFormer se necessário
20
+ # model_codeformer = ...
 
 
 
21
 
22
+ # Defina o modelo RealESR-General-x4v3 se necessário
23
+ # model_realesr_general = ...
24
 
25
+ app = Flask(__name__)
26
 
27
+ @app.route('/reconstruir', methods=['POST'])
28
+ def reconstruir_imagem():
 
 
29
  try:
30
+ version = request.form.get('version', 'v1.4')
31
+ scale = int(request.form.get('scale', 2))
32
+ img_file = request.files['imagem']
 
 
 
 
 
 
33
 
34
+ temp_filename = 'temp.jpg'
35
+ img_file.save(temp_filename)
 
36
 
37
  if version == 'v1.2':
38
+ face_enhancer = model_gfpgan_1_2
 
39
  elif version == 'v1.3':
40
+ face_enhancer = model_gfpgan_1_3
 
41
  elif version == 'v1.4':
42
+ face_enhancer = model_gfpgan_1_4
43
+ # Adicione mais condições para outros modelos, se necessário
 
 
 
 
 
 
 
 
 
44
 
45
+ output, save_path = inference(temp_filename, version, scale)
 
 
 
 
46
 
47
+ if output is not None:
48
+ return send_file(save_path, mimetype='image/jpeg')
 
 
 
 
 
 
 
49
  else:
50
+ return jsonify({'error': 'Falha na reconstrução da imagem'})
 
 
 
 
 
 
 
 
 
51
 
52
+ except Exception as e:
53
+ return jsonify({'error': str(e)})
 
 
54
 
55
+ if __name__ == '__main__':
56
+ app.run(host='0.0.0.0', port=80)