├── README.md ├── align_images_masked.py ├── data ├── A │ └── .gitkeep └── B │ └── .gitkeep ├── haarcascade_frontalface_alt.xml ├── merge_face.py ├── model ├── Dssim.py ├── __init__.py ├── image_augmentation.py ├── model_tf.py ├── training_data.py ├── umeyama.py └── utils.py ├── requirements.txt ├── test_merge_face.py ├── test_tf.py ├── tools └── __init__.py └── train_tf.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/README.md -------------------------------------------------------------------------------- /align_images_masked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/align_images_masked.py -------------------------------------------------------------------------------- /data/A/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/B/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /merge_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/merge_face.py -------------------------------------------------------------------------------- /model/Dssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/model/Dssim.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/image_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/model/image_augmentation.py -------------------------------------------------------------------------------- /model/model_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/model/model_tf.py -------------------------------------------------------------------------------- /model/training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/model/training_data.py -------------------------------------------------------------------------------- /model/umeyama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/model/umeyama.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/model/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_merge_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/test_merge_face.py -------------------------------------------------------------------------------- /test_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/test_tf.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StromWine/DeepFake_tf/HEAD/train_tf.py --------------------------------------------------------------------------------