Spaces:
Running
Running
File size: 449 Bytes
1565811 5911164 1565811 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
'''
@paper: GAN Prior Embedded Network for Blind Face Restoration in the Wild (CVPR2021)
@author: yangxy (yangtao9009@gmail.com)
'''
import os.path as osp
import sys
def add_path(path):
if path not in sys.path:
sys.path.insert(0, path)
this_dir = osp.dirname(__file__)
path = osp.join(this_dir, 'retinaface')
add_path(path)
path = osp.join(this_dir, 'sr_model')
add_path(path)
path = osp.join(this_dir, 'face_model')
add_path(path)
|