GFP-GAN:人面部图像智能修复软件

GFP-GAN:利用生成性面部优先权实现现实世界的盲目面部修复;GFP-GAN: Towards Real-World Blind Face Restoration with Generative Facial PriorGFPGAN旨在开发一个实用的算法用于现实世界的人脸修复。
它利用预先训练好的人脸GAN(如StyleGAN2)中封装的丰富和多样的先验因素进行盲目的人脸修复。

GFP-GAN:人面部图像智能修复软件

安装

  1. Clone repo

    git clone https://github.com/TencentARC/GFPGAN.git
    cd GFPGAN
  2. Install dependent packages

    # Install basicsr - https://github.com/xinntao/BasicSR
    # We use BasicSR for both training and inference
    pip install basicsr
    
    # Install facexlib - https://github.com/xinntao/facexlib
    # We use face detection and face restoration helper in the facexlib package
    pip install facexlib
    
    pip install -r requirements.txt
    python setup.py develop
    
    # If you want to enhance the background (non-face) regions with Real-ESRGAN,
    # you also need to install the realesrgan package
    pip install realesrgan

快速开始:

下载预训练模型GFPGANv1.3.pth,

wget https://github.com/TencentARC/GFPGAN/releases/download/v1.3.0/GFPGANv1.3.pth -P experiments/pretrained_models

其他模型下载链接:https://share.weiyun.com/ShYoCCoc

使用方法:

python inference_gfpgan.py -i inputs/whole_imgs -o results -v 1.3 -s 2
Usage: python inference_gfpgan.py -i inputs/whole_imgs -o results -v 1.3 -s 2 [options]...

  -h                   show this help
  -i input             Input image or folder. Default: inputs/whole_imgs
  -o output            Output folder. Default: results
  -v version           GFPGAN model version. Option: 1 | 1.2 | 1.3. Default: 1.3
  -s upscale           The final upsampling scale of the image. Default: 2
  -bg_upsampler        background upsampler. Default: realesrgan
  -bg_tile             Tile size for background sampler, 0 for no tile during testing. Default: 400
  -suffix              Suffix of the restored faces
  -only_center_face    Only restore the center face
  -aligned             Input are aligned faces
  -ext                 Image extension. Options: auto | jpg | png, auto means using the same extension as inputs.

如若转载,请注明出处:https://www.ouq.net/1594.html

(0)
打赏 微信打赏,为服务器增加50M流量 微信打赏,为服务器增加50M流量 支付宝打赏,为服务器增加50M流量 支付宝打赏,为服务器增加50M流量
上一篇 04/11/2022 00:41
下一篇 04/16/2022

相关推荐

  • 音视频FFMPEG常用命令

    前言 FFMPEG是特别强大的专门用于处理音视频的开源库。你既可以使用它的API对音视频进行处理,也可以使用它提供的工具,如 ffmpeg, ffplay, ffprobe,来编辑你的音视频文件。 本文将简要介绍一下 FFMPEG 库的基本…

    08/16/2024
    38
  • Medical Glossary

    Adjuvant analgesic: medicine which has a primary indication other than pain, but is analgesic in some painful conditions…

    网络资源 07/11/2024
    30
  • 医学基础名词解释题库

    1、 点彩红细胞:尚未完全成熟的红细胞在发育过程中受到损害,其胞质中残存变性的嗜碱性RNA,碱性亚甲蓝染色后,呈大小、形状不一的蓝色颗粒,瑞氏染色后,颗粒呈蓝黑色。 2、 核左移:外周血中杆状核粒细胞增多或(和)晚幼粒、中幼粒、早幼粒等细胞…

    网络资源 07/11/2024
    43
  • 国民经济核算与国内生产总值GDP的关系

    国内生产总值(GDP) 指一个国家所有常住单位在一定时期内生产活动的最终成果。国内生产总值有三种表现形态,即价值形态、收入形态和产品形态。从价值形态看,它是所有常住单位在一定时期内生产的全部货物和服务价值与同期投入的全部非固定资产货物和服务…

    科普 05/07/2024
    73
  • 药物开发的通用公共数据库

    数据库名称 描述 URL dbSNP SNPs for a wide range of organisms, including >150M human reference SNPs. http://www.ncbi.nlm.nih.…

    生物在线资源 08/09/2023
    252