├── LICENSE ├── MultiSpecific.ipynb ├── README.md ├── SimSwap colab.ipynb ├── cog.yaml ├── crop_224 ├── 1_source.jpg ├── 2.jpg ├── 6.jpg ├── cage.jpg ├── dnl.jpg ├── ds.jpg ├── gdg.jpg ├── gy.jpg ├── hzc.jpg ├── hzxc.jpg ├── james.jpg ├── jl.jpg ├── lcw.jpg ├── ljm.jpg ├── ljm2.jpg ├── ljm3.jpg ├── mars2.jpg ├── mouth_open.jpg ├── mtdm.jpg ├── trump.jpg ├── wlh.jpg ├── zjl.jpg ├── zrf.jpg └── zxy.jpg ├── data ├── CelebA_class.py ├── aligned_dataset.py ├── base_data_loader.py ├── base_dataset.py ├── custom_dataset_data_loader.py └── data_loader.py ├── 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 ├── docs ├── SimSwapHD.mp4 ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── ie10-viewport-bug-workaround.css │ ├── jumbotron.css │ └── page.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── guidance │ ├── preparation.md │ └── usage.md ├── img │ ├── apply_example.jpg │ ├── train_celeba_224.png │ ├── train_celeba_512_1.png │ └── train_celeba_512_2.png ├── index.html ├── js │ ├── bootstrap.min.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ ├── vendor │ │ └── jquery.min.js │ └── which-image.js ├── test1.jpg ├── test2.jpg └── test_compare.jpg ├── download-weights.sh ├── insightface_func └── face_detect_crop_single.py ├── make_dataset.py ├── models ├── __init__.py ├── base_model.py ├── config.py ├── fs_model.py ├── fs_networks.py ├── models.py ├── networks.py ├── pix2pixHD_model.py └── ui_model.py ├── options ├── base_options.py ├── test_options.py └── train_options.py ├── output └── result.jpg ├── parsing_model ├── model.py └── resnet.py ├── predict.py ├── simswaplogo └── simswaplogo.png ├── test_one_image.py ├── test_video_swap_multispecific.py ├── test_video_swapmulti.py ├── test_video_swapsingle.py ├── test_video_swapspecific.py ├── test_wholeimage_swap_multispecific.py ├── test_wholeimage_swapmulti.py ├── test_wholeimage_swapsingle.py ├── test_wholeimage_swapspecific.py ├── train.py └── util ├── add_watermark.py ├── html.py ├── image_pool.py ├── norm.py ├── reverse2original.py ├── util.py ├── videoswap.py ├── videoswap_multispecific.py ├── videoswap_specific.py └── visualizer.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiSpecific.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/MultiSpecific.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/README.md -------------------------------------------------------------------------------- /SimSwap colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/SimSwap colab.ipynb -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/cog.yaml -------------------------------------------------------------------------------- /crop_224/1_source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/1_source.jpg -------------------------------------------------------------------------------- /crop_224/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/2.jpg -------------------------------------------------------------------------------- /crop_224/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/6.jpg -------------------------------------------------------------------------------- /crop_224/cage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/cage.jpg -------------------------------------------------------------------------------- /crop_224/dnl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/dnl.jpg -------------------------------------------------------------------------------- /crop_224/ds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/ds.jpg -------------------------------------------------------------------------------- /crop_224/gdg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/gdg.jpg -------------------------------------------------------------------------------- /crop_224/gy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/gy.jpg -------------------------------------------------------------------------------- /crop_224/hzc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/hzc.jpg -------------------------------------------------------------------------------- /crop_224/hzxc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/hzxc.jpg -------------------------------------------------------------------------------- /crop_224/james.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/james.jpg -------------------------------------------------------------------------------- /crop_224/jl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/jl.jpg -------------------------------------------------------------------------------- /crop_224/lcw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/lcw.jpg -------------------------------------------------------------------------------- /crop_224/ljm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/ljm.jpg -------------------------------------------------------------------------------- /crop_224/ljm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/ljm2.jpg -------------------------------------------------------------------------------- /crop_224/ljm3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/ljm3.jpg -------------------------------------------------------------------------------- /crop_224/mars2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/mars2.jpg -------------------------------------------------------------------------------- /crop_224/mouth_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/mouth_open.jpg -------------------------------------------------------------------------------- /crop_224/mtdm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/mtdm.jpg -------------------------------------------------------------------------------- /crop_224/trump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/trump.jpg -------------------------------------------------------------------------------- /crop_224/wlh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/wlh.jpg -------------------------------------------------------------------------------- /crop_224/zjl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/zjl.jpg -------------------------------------------------------------------------------- /crop_224/zrf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/zrf.jpg -------------------------------------------------------------------------------- /crop_224/zxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/crop_224/zxy.jpg -------------------------------------------------------------------------------- /data/CelebA_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/data/CelebA_class.py -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /demo_file/Iron_man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/Iron_man.jpg -------------------------------------------------------------------------------- /demo_file/multi_people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multi_people.jpg -------------------------------------------------------------------------------- /demo_file/multi_people_1080p.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multi_people_1080p.mp4 -------------------------------------------------------------------------------- /demo_file/multispecific/DST_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multispecific/DST_01.jpg -------------------------------------------------------------------------------- /demo_file/multispecific/DST_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multispecific/DST_02.jpg -------------------------------------------------------------------------------- /demo_file/multispecific/DST_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multispecific/DST_03.jpg -------------------------------------------------------------------------------- /demo_file/multispecific/SRC_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multispecific/SRC_01.png -------------------------------------------------------------------------------- /demo_file/multispecific/SRC_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multispecific/SRC_02.png -------------------------------------------------------------------------------- /demo_file/multispecific/SRC_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/multispecific/SRC_03.png -------------------------------------------------------------------------------- /demo_file/specific1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/specific1.png -------------------------------------------------------------------------------- /demo_file/specific2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/specific2.png -------------------------------------------------------------------------------- /demo_file/specific3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/demo_file/specific3.png -------------------------------------------------------------------------------- /docs/SimSwapHD.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/SimSwapHD.mp4 -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/css/ie10-viewport-bug-workaround.css -------------------------------------------------------------------------------- /docs/css/jumbotron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/css/jumbotron.css -------------------------------------------------------------------------------- /docs/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/css/page.css -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/guidance/preparation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/guidance/preparation.md -------------------------------------------------------------------------------- /docs/guidance/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/guidance/usage.md -------------------------------------------------------------------------------- /docs/img/apply_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/img/apply_example.jpg -------------------------------------------------------------------------------- /docs/img/train_celeba_224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/img/train_celeba_224.png -------------------------------------------------------------------------------- /docs/img/train_celeba_512_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/img/train_celeba_512_1.png -------------------------------------------------------------------------------- /docs/img/train_celeba_512_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/img/train_celeba_512_2.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /docs/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /docs/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /docs/js/which-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/js/which-image.js -------------------------------------------------------------------------------- /docs/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/test1.jpg -------------------------------------------------------------------------------- /docs/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/test2.jpg -------------------------------------------------------------------------------- /docs/test_compare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/docs/test_compare.jpg -------------------------------------------------------------------------------- /download-weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/download-weights.sh -------------------------------------------------------------------------------- /insightface_func/face_detect_crop_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/insightface_func/face_detect_crop_single.py -------------------------------------------------------------------------------- /make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/make_dataset.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/config.py -------------------------------------------------------------------------------- /models/fs_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/fs_model.py -------------------------------------------------------------------------------- /models/fs_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/fs_networks.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/models.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/pix2pixHD_model.py -------------------------------------------------------------------------------- /models/ui_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/models/ui_model.py -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/options/train_options.py -------------------------------------------------------------------------------- /output/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/output/result.jpg -------------------------------------------------------------------------------- /parsing_model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/parsing_model/model.py -------------------------------------------------------------------------------- /parsing_model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/parsing_model/resnet.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/predict.py -------------------------------------------------------------------------------- /simswaplogo/simswaplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/simswaplogo/simswaplogo.png -------------------------------------------------------------------------------- /test_one_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_one_image.py -------------------------------------------------------------------------------- /test_video_swap_multispecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_video_swap_multispecific.py -------------------------------------------------------------------------------- /test_video_swapmulti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_video_swapmulti.py -------------------------------------------------------------------------------- /test_video_swapsingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_video_swapsingle.py -------------------------------------------------------------------------------- /test_video_swapspecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_video_swapspecific.py -------------------------------------------------------------------------------- /test_wholeimage_swap_multispecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_wholeimage_swap_multispecific.py -------------------------------------------------------------------------------- /test_wholeimage_swapmulti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_wholeimage_swapmulti.py -------------------------------------------------------------------------------- /test_wholeimage_swapsingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_wholeimage_swapsingle.py -------------------------------------------------------------------------------- /test_wholeimage_swapspecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/test_wholeimage_swapspecific.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/train.py -------------------------------------------------------------------------------- /util/add_watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/add_watermark.py -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/norm.py -------------------------------------------------------------------------------- /util/reverse2original.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/reverse2original.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/util.py -------------------------------------------------------------------------------- /util/videoswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/videoswap.py -------------------------------------------------------------------------------- /util/videoswap_multispecific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/videoswap_multispecific.py -------------------------------------------------------------------------------- /util/videoswap_specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/videoswap_specific.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a312863063/SimSwapHD/HEAD/util/visualizer.py --------------------------------------------------------------------------------