├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── VGGFace2-HQ.png ├── VGGFace2-HQ.pptx ├── docs └── img │ ├── 2.png │ ├── VGGFace2-HQ.png │ ├── girl2-RGB.png │ ├── girl2.gif │ ├── logo.png │ ├── simswap.png │ ├── title.png │ └── vggface2_hq_compare.png ├── gfpgan ├── __init__.py ├── archs │ ├── __init__.py │ ├── arcface_arch.py │ ├── gfpganv1_arch.py │ ├── gfpganv1_clean_arch.py │ └── stylegan2_clean_arch.py ├── data │ ├── __init__.py │ └── ffhq_degradation_dataset.py ├── models │ ├── __init__.py │ └── gfpgan_model.py ├── train.py ├── utils.py └── weights │ └── README.md ├── inference_gfpgan.py ├── insightface_func ├── __init__.py ├── face_detect_crop.py ├── face_detect_crop_ffhq_newarcAlign.py └── utils │ ├── face_align.py │ └── face_align_ffhqandnewarc.py ├── options ├── train_gfpgan_v1.yml └── train_gfpgan_v1_simple.yml ├── requirements.txt ├── scripts ├── crop_align_vggface2_FFHQalign.py ├── crop_align_vggface2_FFHQalignandNewarcalign.py ├── inference_gfpgan_forvggface2.py └── vggface_dataset.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.2.3 2 | -------------------------------------------------------------------------------- /VGGFace2-HQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/VGGFace2-HQ.png -------------------------------------------------------------------------------- /VGGFace2-HQ.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/VGGFace2-HQ.pptx -------------------------------------------------------------------------------- /docs/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/2.png -------------------------------------------------------------------------------- /docs/img/VGGFace2-HQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/VGGFace2-HQ.png -------------------------------------------------------------------------------- /docs/img/girl2-RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/girl2-RGB.png -------------------------------------------------------------------------------- /docs/img/girl2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/girl2.gif -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/img/simswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/simswap.png -------------------------------------------------------------------------------- /docs/img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/title.png -------------------------------------------------------------------------------- /docs/img/vggface2_hq_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/docs/img/vggface2_hq_compare.png -------------------------------------------------------------------------------- /gfpgan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/__init__.py -------------------------------------------------------------------------------- /gfpgan/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/archs/__init__.py -------------------------------------------------------------------------------- /gfpgan/archs/arcface_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/archs/arcface_arch.py -------------------------------------------------------------------------------- /gfpgan/archs/gfpganv1_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/archs/gfpganv1_arch.py -------------------------------------------------------------------------------- /gfpgan/archs/gfpganv1_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/archs/gfpganv1_clean_arch.py -------------------------------------------------------------------------------- /gfpgan/archs/stylegan2_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/archs/stylegan2_clean_arch.py -------------------------------------------------------------------------------- /gfpgan/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/data/__init__.py -------------------------------------------------------------------------------- /gfpgan/data/ffhq_degradation_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/data/ffhq_degradation_dataset.py -------------------------------------------------------------------------------- /gfpgan/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/models/__init__.py -------------------------------------------------------------------------------- /gfpgan/models/gfpgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/models/gfpgan_model.py -------------------------------------------------------------------------------- /gfpgan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/train.py -------------------------------------------------------------------------------- /gfpgan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/utils.py -------------------------------------------------------------------------------- /gfpgan/weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/gfpgan/weights/README.md -------------------------------------------------------------------------------- /inference_gfpgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/inference_gfpgan.py -------------------------------------------------------------------------------- /insightface_func/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /insightface_func/face_detect_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/insightface_func/face_detect_crop.py -------------------------------------------------------------------------------- /insightface_func/face_detect_crop_ffhq_newarcAlign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/insightface_func/face_detect_crop_ffhq_newarcAlign.py -------------------------------------------------------------------------------- /insightface_func/utils/face_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/insightface_func/utils/face_align.py -------------------------------------------------------------------------------- /insightface_func/utils/face_align_ffhqandnewarc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/insightface_func/utils/face_align_ffhqandnewarc.py -------------------------------------------------------------------------------- /options/train_gfpgan_v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/options/train_gfpgan_v1.yml -------------------------------------------------------------------------------- /options/train_gfpgan_v1_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/options/train_gfpgan_v1_simple.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/crop_align_vggface2_FFHQalign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/scripts/crop_align_vggface2_FFHQalign.py -------------------------------------------------------------------------------- /scripts/crop_align_vggface2_FFHQalignandNewarcalign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/scripts/crop_align_vggface2_FFHQalignandNewarcalign.py -------------------------------------------------------------------------------- /scripts/inference_gfpgan_forvggface2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/scripts/inference_gfpgan_forvggface2.py -------------------------------------------------------------------------------- /scripts/vggface_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/scripts/vggface_dataset.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NNNNAI/VGGFace2-HQ/HEAD/setup.py --------------------------------------------------------------------------------