├── Docs └── pics │ ├── img_mask_blur_21.jpg │ ├── img_mask_blur_41.jpg │ ├── img_mask_blur_61.jpg │ ├── img_mask_erode_0.jpg │ ├── img_mask_erode_20.jpg │ └── img_mask_erode_40.jpg ├── README.md ├── app.py ├── app_web.py ├── configs ├── run_image.yaml ├── run_image_specific.yaml ├── run_video.yaml └── run_video_specific.yaml ├── demo_file ├── Iron_man.jpg ├── multi_people.jpg ├── multi_people_1080p.mp4 ├── multispecific │ ├── DST_01.jpg │ ├── DST_02.jpg │ ├── DST_03.jpg │ ├── SRC_01.png │ ├── SRC_02.png │ └── SRC_03.png ├── specific1.png ├── specific2.png └── specific3.png ├── requirements.txt └── src ├── Blend └── blend.py ├── DataManager ├── ImageDataManager.py ├── VideoDataManager.py ├── base.py └── utils.py ├── FaceAlign └── face_align.py ├── FaceDetector └── face_detector.py ├── FaceId └── faceid.py ├── Generator ├── fs_networks_512.py └── fs_networks_fix.py ├── Misc ├── types.py └── utils.py ├── PostProcess ├── GFPGAN │ ├── gfpgan.py │ └── stylegan2.py ├── ParsingModel │ ├── model.py │ └── resnet.py └── utils.py ├── model_loader.py └── simswap.py /Docs/pics/img_mask_blur_21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/Docs/pics/img_mask_blur_21.jpg -------------------------------------------------------------------------------- /Docs/pics/img_mask_blur_41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/Docs/pics/img_mask_blur_41.jpg -------------------------------------------------------------------------------- /Docs/pics/img_mask_blur_61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/Docs/pics/img_mask_blur_61.jpg -------------------------------------------------------------------------------- /Docs/pics/img_mask_erode_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/Docs/pics/img_mask_erode_0.jpg -------------------------------------------------------------------------------- /Docs/pics/img_mask_erode_20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/Docs/pics/img_mask_erode_20.jpg -------------------------------------------------------------------------------- /Docs/pics/img_mask_erode_40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/Docs/pics/img_mask_erode_40.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/app.py -------------------------------------------------------------------------------- /app_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/app_web.py -------------------------------------------------------------------------------- /configs/run_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/configs/run_image.yaml -------------------------------------------------------------------------------- /configs/run_image_specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/configs/run_image_specific.yaml -------------------------------------------------------------------------------- /configs/run_video.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/configs/run_video.yaml -------------------------------------------------------------------------------- /configs/run_video_specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/configs/run_video_specific.yaml -------------------------------------------------------------------------------- /demo_file/Iron_man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/Iron_man.jpg -------------------------------------------------------------------------------- /demo_file/multi_people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multi_people.jpg -------------------------------------------------------------------------------- /demo_file/multi_people_1080p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multi_people_1080p.mp4 -------------------------------------------------------------------------------- /demo_file/multispecific/DST_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multispecific/DST_01.jpg -------------------------------------------------------------------------------- /demo_file/multispecific/DST_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multispecific/DST_02.jpg -------------------------------------------------------------------------------- /demo_file/multispecific/DST_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multispecific/DST_03.jpg -------------------------------------------------------------------------------- /demo_file/multispecific/SRC_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multispecific/SRC_01.png -------------------------------------------------------------------------------- /demo_file/multispecific/SRC_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multispecific/SRC_02.png -------------------------------------------------------------------------------- /demo_file/multispecific/SRC_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/multispecific/SRC_03.png -------------------------------------------------------------------------------- /demo_file/specific1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/specific1.png -------------------------------------------------------------------------------- /demo_file/specific2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/specific2.png -------------------------------------------------------------------------------- /demo_file/specific3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/demo_file/specific3.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/Blend/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/Blend/blend.py -------------------------------------------------------------------------------- /src/DataManager/ImageDataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/DataManager/ImageDataManager.py -------------------------------------------------------------------------------- /src/DataManager/VideoDataManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/DataManager/VideoDataManager.py -------------------------------------------------------------------------------- /src/DataManager/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/DataManager/base.py -------------------------------------------------------------------------------- /src/DataManager/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/DataManager/utils.py -------------------------------------------------------------------------------- /src/FaceAlign/face_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/FaceAlign/face_align.py -------------------------------------------------------------------------------- /src/FaceDetector/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/FaceDetector/face_detector.py -------------------------------------------------------------------------------- /src/FaceId/faceid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/FaceId/faceid.py -------------------------------------------------------------------------------- /src/Generator/fs_networks_512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/Generator/fs_networks_512.py -------------------------------------------------------------------------------- /src/Generator/fs_networks_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/Generator/fs_networks_fix.py -------------------------------------------------------------------------------- /src/Misc/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/Misc/types.py -------------------------------------------------------------------------------- /src/Misc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/Misc/utils.py -------------------------------------------------------------------------------- /src/PostProcess/GFPGAN/gfpgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/PostProcess/GFPGAN/gfpgan.py -------------------------------------------------------------------------------- /src/PostProcess/GFPGAN/stylegan2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/PostProcess/GFPGAN/stylegan2.py -------------------------------------------------------------------------------- /src/PostProcess/ParsingModel/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/PostProcess/ParsingModel/model.py -------------------------------------------------------------------------------- /src/PostProcess/ParsingModel/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/PostProcess/ParsingModel/resnet.py -------------------------------------------------------------------------------- /src/PostProcess/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/PostProcess/utils.py -------------------------------------------------------------------------------- /src/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/model_loader.py -------------------------------------------------------------------------------- /src/simswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mike9251/simswap-inference-pytorch/HEAD/src/simswap.py --------------------------------------------------------------------------------