├── .gitignore ├── FaceWarper ├── .gitignore ├── FaceWarperClient │ ├── FaceWarperClient.py │ └── __init__.py ├── FaceWarperServer │ ├── CMakeLists.txt │ ├── binaries │ │ └── windows │ │ │ ├── FaceWarperServer.exe │ │ │ ├── freeglut.dll │ │ │ └── glew32.dll │ ├── build_linux.sh │ ├── build_windows.bat │ ├── source │ │ ├── FaceWarper.cpp │ │ ├── face.h │ │ ├── fbo.h │ │ ├── geo.h │ │ ├── image.h │ │ ├── io.h │ │ ├── platform.h │ │ ├── shader.cpp │ │ ├── shader.h │ │ └── texture.h │ └── windows_build │ │ ├── FaceWarperServer.filters │ │ ├── FaceWarperServer.sln │ │ └── FaceWarperServer.vcxproj ├── README.md ├── dataset_example │ ├── affine │ │ ├── 000001_crop.txt │ │ ├── 000002_crop.txt │ │ ├── 000005_crop.txt │ │ ├── 000014_crop.txt │ │ └── 000027_crop.txt │ ├── depth │ │ ├── 000001_crop.txt │ │ ├── 000002_crop.txt │ │ ├── 000005_crop.txt │ │ ├── 000014_crop.txt │ │ └── 000027_crop.txt │ ├── expected_result │ │ ├── 000001_crop.png │ │ ├── 000002_crop.png │ │ ├── 000005_crop.png │ │ ├── 000014_crop.png │ │ └── 000027_crop.png │ ├── keypoints │ │ ├── 000001_crop.txt │ │ ├── 000002_crop.txt │ │ ├── 000005_crop.txt │ │ ├── 000014_crop.txt │ │ └── 000027_crop.txt │ └── source │ │ ├── 000001_crop.png │ │ ├── 000002_crop.png │ │ ├── 000005_crop.png │ │ ├── 000014_crop.png │ │ └── 000027_crop.png └── warp_dataset.py ├── LICENSE ├── README.md ├── cyclegan ├── README.md ├── architectures │ ├── __init__.py │ ├── block9_a3b3.py │ ├── block9_a6b3.py │ ├── shared │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── image2image_old.py │ │ └── networks.py │ └── test_unet.py ├── data │ ├── .gitignore │ ├── celeba │ │ ├── README.md │ │ ├── crop_celeba.py │ │ ├── make_celebA_dataset.py │ │ ├── mask_face_region_with_avail_kpts.py │ │ └── run_facewarp.py │ ├── celeba_faceswap │ │ ├── README.md │ │ ├── create_h5.py │ │ ├── paste_faces.py │ │ └── run_multiwarper.py │ ├── util │ │ ├── aff_identity.txt │ │ ├── depth_identity.txt │ │ └── haarcascade_frontalface_default.xml │ └── vgg │ │ ├── README.md │ │ ├── make_VGG_dataset_sina.py │ │ └── run_facewarp.py ├── environment.yml ├── eval.py ├── experiments │ ├── experiment_depthnet_bg_vs_frontal.sh │ └── experiment_faceswap.sh ├── i2i │ ├── __init__.py │ ├── base.py │ └── cyclegan.py ├── task_launcher_bgsynth.py ├── task_launcher_faceswap.py └── util.py ├── depthnet-pytorch ├── README.md ├── aigns.py ├── architectures │ ├── __init__.py │ ├── aign.py │ ├── aign_sn.py │ ├── depthnet_sd5_learnm.py │ ├── depthnet_shallowd5.py │ ├── init.py │ └── spectral_normalization.py ├── depthnet_gan.py ├── depthnet_gan_learnm.py ├── env.sh.example ├── environment.yml ├── export_anim_to_facewarper.py ├── export_to_facewarper.py ├── export_to_facewarper_single.py ├── exps │ ├── exp1.lamb1.sd5.nogan.learnm.sh │ ├── exp1.lamb1.sd5.nogan.sigma0.05.sh │ ├── exp1.lamb1.sd5.nogan.sigma0.fixm.sh │ ├── exp1.lamb1.sd5.wgan.dnorm0.1.learnm.sh │ ├── exp1.lamb1.sd5.wgan.dnorm0.1.sigma0.05.sh │ └── exp1.lamb1.sd5.wgan.dnorm0.1.sigma0.fixm.sh ├── exps_warping │ ├── rotation_example │ │ ├── keypoints.txt │ │ ├── run.sh │ │ └── src.png │ └── warp_example │ │ ├── obama.png │ │ ├── obama_keypoints.txt │ │ ├── run.sh │ │ ├── src.png │ │ └── src_keypoints.txt ├── figures │ ├── DepthNet_only_kpts.jpg │ ├── DepthNet_only_kpts_pseudo_inverse.jpg │ ├── chris_warped_to_obama.png │ ├── chris_warped_to_obama_overlay.png │ ├── chris_xmas_yellow.png │ ├── chris_xmas_yellow_rotate.gif │ ├── depthnet_warp.png │ ├── gen_visualisations.py │ ├── obama.png │ └── warp_src.gif ├── interactive.py ├── interactive_aigns.py ├── interactive_mofa.py ├── iterators │ └── iterator.py ├── prepare_dataset.py ├── task_launcher_aigns.py ├── task_launcher_depthnet.py ├── tmp │ └── .gitignore └── util.py └── images ├── Face_Frontalization_with_bg_synthesis1.jpg ├── Face_Frontalization_with_bg_synthesis2.jpg ├── Face_Swap_1.jpg ├── Face_Swap_2.jpg ├── Face_rotation_Camera_Sweep.jpg ├── Face_rotation_Camera_Sweep_2.jpg └── face_warper.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/.gitignore -------------------------------------------------------------------------------- /FaceWarper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/.gitignore -------------------------------------------------------------------------------- /FaceWarper/FaceWarperClient/FaceWarperClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperClient/FaceWarperClient.py -------------------------------------------------------------------------------- /FaceWarper/FaceWarperClient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperClient/__init__.py -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/CMakeLists.txt -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/binaries/windows/FaceWarperServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/binaries/windows/FaceWarperServer.exe -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/binaries/windows/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/binaries/windows/freeglut.dll -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/binaries/windows/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/binaries/windows/glew32.dll -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/build_linux.sh -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/build_windows.bat -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/FaceWarper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/FaceWarper.cpp -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/face.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/fbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/fbo.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/geo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/geo.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/image.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/io.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/platform.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/shader.cpp -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/shader.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/source/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/source/texture.h -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/windows_build/FaceWarperServer.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/windows_build/FaceWarperServer.filters -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/windows_build/FaceWarperServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/windows_build/FaceWarperServer.sln -------------------------------------------------------------------------------- /FaceWarper/FaceWarperServer/windows_build/FaceWarperServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/FaceWarperServer/windows_build/FaceWarperServer.vcxproj -------------------------------------------------------------------------------- /FaceWarper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/README.md -------------------------------------------------------------------------------- /FaceWarper/dataset_example/affine/000001_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/affine/000001_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/affine/000002_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/affine/000002_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/affine/000005_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/affine/000005_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/affine/000014_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/affine/000014_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/affine/000027_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/affine/000027_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/depth/000001_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/depth/000001_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/depth/000002_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/depth/000002_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/depth/000005_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/depth/000005_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/depth/000014_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/depth/000014_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/depth/000027_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/depth/000027_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/expected_result/000001_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/expected_result/000001_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/expected_result/000002_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/expected_result/000002_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/expected_result/000005_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/expected_result/000005_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/expected_result/000014_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/expected_result/000014_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/expected_result/000027_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/expected_result/000027_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/keypoints/000001_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/keypoints/000001_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/keypoints/000002_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/keypoints/000002_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/keypoints/000005_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/keypoints/000005_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/keypoints/000014_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/keypoints/000014_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/keypoints/000027_crop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/keypoints/000027_crop.txt -------------------------------------------------------------------------------- /FaceWarper/dataset_example/source/000001_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/source/000001_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/source/000002_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/source/000002_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/source/000005_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/source/000005_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/source/000014_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/source/000014_crop.png -------------------------------------------------------------------------------- /FaceWarper/dataset_example/source/000027_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/dataset_example/source/000027_crop.png -------------------------------------------------------------------------------- /FaceWarper/warp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/FaceWarper/warp_dataset.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/README.md -------------------------------------------------------------------------------- /cyclegan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/README.md -------------------------------------------------------------------------------- /cyclegan/architectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclegan/architectures/block9_a3b3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/architectures/block9_a3b3.py -------------------------------------------------------------------------------- /cyclegan/architectures/block9_a6b3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/architectures/block9_a6b3.py -------------------------------------------------------------------------------- /cyclegan/architectures/shared/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/architectures/shared/LICENSE -------------------------------------------------------------------------------- /cyclegan/architectures/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclegan/architectures/shared/image2image_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/architectures/shared/image2image_old.py -------------------------------------------------------------------------------- /cyclegan/architectures/shared/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/architectures/shared/networks.py -------------------------------------------------------------------------------- /cyclegan/architectures/test_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/architectures/test_unet.py -------------------------------------------------------------------------------- /cyclegan/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclegan/data/celeba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba/README.md -------------------------------------------------------------------------------- /cyclegan/data/celeba/crop_celeba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba/crop_celeba.py -------------------------------------------------------------------------------- /cyclegan/data/celeba/make_celebA_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba/make_celebA_dataset.py -------------------------------------------------------------------------------- /cyclegan/data/celeba/mask_face_region_with_avail_kpts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba/mask_face_region_with_avail_kpts.py -------------------------------------------------------------------------------- /cyclegan/data/celeba/run_facewarp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba/run_facewarp.py -------------------------------------------------------------------------------- /cyclegan/data/celeba_faceswap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba_faceswap/README.md -------------------------------------------------------------------------------- /cyclegan/data/celeba_faceswap/create_h5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba_faceswap/create_h5.py -------------------------------------------------------------------------------- /cyclegan/data/celeba_faceswap/paste_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba_faceswap/paste_faces.py -------------------------------------------------------------------------------- /cyclegan/data/celeba_faceswap/run_multiwarper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/celeba_faceswap/run_multiwarper.py -------------------------------------------------------------------------------- /cyclegan/data/util/aff_identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/util/aff_identity.txt -------------------------------------------------------------------------------- /cyclegan/data/util/depth_identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/util/depth_identity.txt -------------------------------------------------------------------------------- /cyclegan/data/util/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/util/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /cyclegan/data/vgg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/vgg/README.md -------------------------------------------------------------------------------- /cyclegan/data/vgg/make_VGG_dataset_sina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/vgg/make_VGG_dataset_sina.py -------------------------------------------------------------------------------- /cyclegan/data/vgg/run_facewarp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/data/vgg/run_facewarp.py -------------------------------------------------------------------------------- /cyclegan/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/environment.yml -------------------------------------------------------------------------------- /cyclegan/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/eval.py -------------------------------------------------------------------------------- /cyclegan/experiments/experiment_depthnet_bg_vs_frontal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/experiments/experiment_depthnet_bg_vs_frontal.sh -------------------------------------------------------------------------------- /cyclegan/experiments/experiment_faceswap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/experiments/experiment_faceswap.sh -------------------------------------------------------------------------------- /cyclegan/i2i/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyclegan/i2i/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/i2i/base.py -------------------------------------------------------------------------------- /cyclegan/i2i/cyclegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/i2i/cyclegan.py -------------------------------------------------------------------------------- /cyclegan/task_launcher_bgsynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/task_launcher_bgsynth.py -------------------------------------------------------------------------------- /cyclegan/task_launcher_faceswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/task_launcher_faceswap.py -------------------------------------------------------------------------------- /cyclegan/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/cyclegan/util.py -------------------------------------------------------------------------------- /depthnet-pytorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/README.md -------------------------------------------------------------------------------- /depthnet-pytorch/aigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/aigns.py -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/aign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/architectures/aign.py -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/aign_sn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/architectures/aign_sn.py -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/depthnet_sd5_learnm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/architectures/depthnet_sd5_learnm.py -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/depthnet_shallowd5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/architectures/depthnet_shallowd5.py -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/architectures/init.py -------------------------------------------------------------------------------- /depthnet-pytorch/architectures/spectral_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/architectures/spectral_normalization.py -------------------------------------------------------------------------------- /depthnet-pytorch/depthnet_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/depthnet_gan.py -------------------------------------------------------------------------------- /depthnet-pytorch/depthnet_gan_learnm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/depthnet_gan_learnm.py -------------------------------------------------------------------------------- /depthnet-pytorch/env.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/env.sh.example -------------------------------------------------------------------------------- /depthnet-pytorch/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/environment.yml -------------------------------------------------------------------------------- /depthnet-pytorch/export_anim_to_facewarper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/export_anim_to_facewarper.py -------------------------------------------------------------------------------- /depthnet-pytorch/export_to_facewarper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/export_to_facewarper.py -------------------------------------------------------------------------------- /depthnet-pytorch/export_to_facewarper_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/export_to_facewarper_single.py -------------------------------------------------------------------------------- /depthnet-pytorch/exps/exp1.lamb1.sd5.nogan.learnm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps/exp1.lamb1.sd5.nogan.learnm.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps/exp1.lamb1.sd5.nogan.sigma0.05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps/exp1.lamb1.sd5.nogan.sigma0.05.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps/exp1.lamb1.sd5.nogan.sigma0.fixm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps/exp1.lamb1.sd5.nogan.sigma0.fixm.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps/exp1.lamb1.sd5.wgan.dnorm0.1.learnm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps/exp1.lamb1.sd5.wgan.dnorm0.1.learnm.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps/exp1.lamb1.sd5.wgan.dnorm0.1.sigma0.05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps/exp1.lamb1.sd5.wgan.dnorm0.1.sigma0.05.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps/exp1.lamb1.sd5.wgan.dnorm0.1.sigma0.fixm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps/exp1.lamb1.sd5.wgan.dnorm0.1.sigma0.fixm.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/rotation_example/keypoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/rotation_example/keypoints.txt -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/rotation_example/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/rotation_example/run.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/rotation_example/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/rotation_example/src.png -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/warp_example/obama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/warp_example/obama.png -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/warp_example/obama_keypoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/warp_example/obama_keypoints.txt -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/warp_example/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/warp_example/run.sh -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/warp_example/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/warp_example/src.png -------------------------------------------------------------------------------- /depthnet-pytorch/exps_warping/warp_example/src_keypoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/exps_warping/warp_example/src_keypoints.txt -------------------------------------------------------------------------------- /depthnet-pytorch/figures/DepthNet_only_kpts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/DepthNet_only_kpts.jpg -------------------------------------------------------------------------------- /depthnet-pytorch/figures/DepthNet_only_kpts_pseudo_inverse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/DepthNet_only_kpts_pseudo_inverse.jpg -------------------------------------------------------------------------------- /depthnet-pytorch/figures/chris_warped_to_obama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/chris_warped_to_obama.png -------------------------------------------------------------------------------- /depthnet-pytorch/figures/chris_warped_to_obama_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/chris_warped_to_obama_overlay.png -------------------------------------------------------------------------------- /depthnet-pytorch/figures/chris_xmas_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/chris_xmas_yellow.png -------------------------------------------------------------------------------- /depthnet-pytorch/figures/chris_xmas_yellow_rotate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/chris_xmas_yellow_rotate.gif -------------------------------------------------------------------------------- /depthnet-pytorch/figures/depthnet_warp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/depthnet_warp.png -------------------------------------------------------------------------------- /depthnet-pytorch/figures/gen_visualisations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/gen_visualisations.py -------------------------------------------------------------------------------- /depthnet-pytorch/figures/obama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/obama.png -------------------------------------------------------------------------------- /depthnet-pytorch/figures/warp_src.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/figures/warp_src.gif -------------------------------------------------------------------------------- /depthnet-pytorch/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/interactive.py -------------------------------------------------------------------------------- /depthnet-pytorch/interactive_aigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/interactive_aigns.py -------------------------------------------------------------------------------- /depthnet-pytorch/interactive_mofa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/interactive_mofa.py -------------------------------------------------------------------------------- /depthnet-pytorch/iterators/iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/iterators/iterator.py -------------------------------------------------------------------------------- /depthnet-pytorch/prepare_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/prepare_dataset.py -------------------------------------------------------------------------------- /depthnet-pytorch/task_launcher_aigns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/task_launcher_aigns.py -------------------------------------------------------------------------------- /depthnet-pytorch/task_launcher_depthnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/task_launcher_depthnet.py -------------------------------------------------------------------------------- /depthnet-pytorch/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depthnet-pytorch/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/depthnet-pytorch/util.py -------------------------------------------------------------------------------- /images/Face_Frontalization_with_bg_synthesis1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/Face_Frontalization_with_bg_synthesis1.jpg -------------------------------------------------------------------------------- /images/Face_Frontalization_with_bg_synthesis2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/Face_Frontalization_with_bg_synthesis2.jpg -------------------------------------------------------------------------------- /images/Face_Swap_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/Face_Swap_1.jpg -------------------------------------------------------------------------------- /images/Face_Swap_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/Face_Swap_2.jpg -------------------------------------------------------------------------------- /images/Face_rotation_Camera_Sweep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/Face_rotation_Camera_Sweep.jpg -------------------------------------------------------------------------------- /images/Face_rotation_Camera_Sweep_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/Face_rotation_Camera_Sweep_2.jpg -------------------------------------------------------------------------------- /images/face_warper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelmoniz/DepthNets/HEAD/images/face_warper.jpg --------------------------------------------------------------------------------