├── .gitignore ├── LICENSE.txt ├── README.md ├── _config.yml ├── cp_data.py ├── data ├── __init__.py ├── aligned_dataset.py ├── aligned_dataset2.py ├── base_data_loader.py ├── base_dataset.py ├── con_dataset_data_loader.py ├── custom_dataset_data_loader.py ├── data_loader.py ├── face_con_dataset_data_loader.py ├── face_dataset.py ├── image_folder.py ├── keypoint2img.py ├── pose_con_dataset_data_loader.py └── pose_dataset.py ├── encode_features.py ├── expand_val_test.py ├── generate_data_face_forensics.py ├── img ├── dance.png ├── face.png ├── fig.png ├── scene.png ├── small_dance.png ├── small_face.png └── small_scene.png ├── infer_face.py ├── inference ├── data │ ├── img │ │ ├── __Mr_0__0__a.0.jpg │ │ ├── __Mr_0__0__a.1.jpg │ │ ├── __Mr_1__0__a.0.jpg │ │ └── __Mr_1__0__a.1.jpg │ ├── infer_list.txt │ └── keypoints │ │ ├── __Mr_0__0__a.0.txt │ │ ├── __Mr_0__0__a.1.txt │ │ ├── __Mr_1__0__a.0.txt │ │ └── __Mr_1__0__a.1.txt ├── infer_list.txt └── test_imgs │ ├── 1.jpg │ └── 2.jpg ├── judge_face.py ├── models ├── __init__.py ├── base_model.py ├── c_pix2pixHD_model.py ├── cm_pix2pixHD_model.py ├── models.py ├── networks.py ├── pix2pixHD_model.py └── ui_model.py ├── new_scripts ├── infer_face.sh ├── table_face.sh ├── table_pose.sh ├── table_scene.sh ├── test_face.sh ├── test_pose.sh ├── test_scene.sh ├── train_face.sh ├── train_pose.sh └── train_scene.sh ├── options ├── __init__.py ├── base_options.py ├── generate_data_options.py ├── test_options.py └── train_options.py ├── precompute_feature_maps.py ├── process.py ├── run_engine.py ├── temp_test.py ├── test.py ├── test_all.py ├── test_con.py ├── test_con_bak.py ├── test_delta.txt ├── test_face.py ├── test_mface.py ├── test_pose.py ├── test_seg.py ├── train.py ├── train_con.py ├── train_face.py ├── train_mface.py ├── train_pose.py ├── train_seg.py ├── util ├── __init__.py ├── html.py ├── image_pool.py ├── label.py ├── util.py └── visualizer.py ├── val_gen.py ├── vis_bdd.py ├── vis_delta.txt ├── vis_face.py └── vis_pose.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/_config.yml -------------------------------------------------------------------------------- /cp_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/cp_data.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/aligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/aligned_dataset.py -------------------------------------------------------------------------------- /data/aligned_dataset2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/aligned_dataset2.py -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/con_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/con_dataset_data_loader.py -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /data/face_con_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/face_con_dataset_data_loader.py -------------------------------------------------------------------------------- /data/face_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/face_dataset.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /data/keypoint2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/keypoint2img.py -------------------------------------------------------------------------------- /data/pose_con_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/pose_con_dataset_data_loader.py -------------------------------------------------------------------------------- /data/pose_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/data/pose_dataset.py -------------------------------------------------------------------------------- /encode_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/encode_features.py -------------------------------------------------------------------------------- /expand_val_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/expand_val_test.py -------------------------------------------------------------------------------- /generate_data_face_forensics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/generate_data_face_forensics.py -------------------------------------------------------------------------------- /img/dance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/dance.png -------------------------------------------------------------------------------- /img/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/face.png -------------------------------------------------------------------------------- /img/fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/fig.png -------------------------------------------------------------------------------- /img/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/scene.png -------------------------------------------------------------------------------- /img/small_dance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/small_dance.png -------------------------------------------------------------------------------- /img/small_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/small_face.png -------------------------------------------------------------------------------- /img/small_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/img/small_scene.png -------------------------------------------------------------------------------- /infer_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/infer_face.py -------------------------------------------------------------------------------- /inference/data/img/__Mr_0__0__a.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/img/__Mr_0__0__a.0.jpg -------------------------------------------------------------------------------- /inference/data/img/__Mr_0__0__a.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/img/__Mr_0__0__a.1.jpg -------------------------------------------------------------------------------- /inference/data/img/__Mr_1__0__a.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/img/__Mr_1__0__a.0.jpg -------------------------------------------------------------------------------- /inference/data/img/__Mr_1__0__a.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/img/__Mr_1__0__a.1.jpg -------------------------------------------------------------------------------- /inference/data/infer_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/infer_list.txt -------------------------------------------------------------------------------- /inference/data/keypoints/__Mr_0__0__a.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/keypoints/__Mr_0__0__a.0.txt -------------------------------------------------------------------------------- /inference/data/keypoints/__Mr_0__0__a.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/keypoints/__Mr_0__0__a.1.txt -------------------------------------------------------------------------------- /inference/data/keypoints/__Mr_1__0__a.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/keypoints/__Mr_1__0__a.0.txt -------------------------------------------------------------------------------- /inference/data/keypoints/__Mr_1__0__a.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/data/keypoints/__Mr_1__0__a.1.txt -------------------------------------------------------------------------------- /inference/infer_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/infer_list.txt -------------------------------------------------------------------------------- /inference/test_imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/test_imgs/1.jpg -------------------------------------------------------------------------------- /inference/test_imgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/inference/test_imgs/2.jpg -------------------------------------------------------------------------------- /judge_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/judge_face.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/c_pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/c_pix2pixHD_model.py -------------------------------------------------------------------------------- /models/cm_pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/cm_pix2pixHD_model.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/models.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/pix2pixHD_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/pix2pixHD_model.py -------------------------------------------------------------------------------- /models/ui_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/models/ui_model.py -------------------------------------------------------------------------------- /new_scripts/infer_face.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/infer_face.sh -------------------------------------------------------------------------------- /new_scripts/table_face.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/table_face.sh -------------------------------------------------------------------------------- /new_scripts/table_pose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/table_pose.sh -------------------------------------------------------------------------------- /new_scripts/table_scene.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/table_scene.sh -------------------------------------------------------------------------------- /new_scripts/test_face.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/test_face.sh -------------------------------------------------------------------------------- /new_scripts/test_pose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/test_pose.sh -------------------------------------------------------------------------------- /new_scripts/test_scene.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/test_scene.sh -------------------------------------------------------------------------------- /new_scripts/train_face.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/train_face.sh -------------------------------------------------------------------------------- /new_scripts/train_pose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/train_pose.sh -------------------------------------------------------------------------------- /new_scripts/train_scene.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/new_scripts/train_scene.sh -------------------------------------------------------------------------------- /options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/options/base_options.py -------------------------------------------------------------------------------- /options/generate_data_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/options/generate_data_options.py -------------------------------------------------------------------------------- /options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/options/test_options.py -------------------------------------------------------------------------------- /options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/options/train_options.py -------------------------------------------------------------------------------- /precompute_feature_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/precompute_feature_maps.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/process.py -------------------------------------------------------------------------------- /run_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/run_engine.py -------------------------------------------------------------------------------- /temp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/temp_test.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test.py -------------------------------------------------------------------------------- /test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_all.py -------------------------------------------------------------------------------- /test_con.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_con.py -------------------------------------------------------------------------------- /test_con_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_con_bak.py -------------------------------------------------------------------------------- /test_delta.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_face.py -------------------------------------------------------------------------------- /test_mface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_mface.py -------------------------------------------------------------------------------- /test_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_pose.py -------------------------------------------------------------------------------- /test_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/test_seg.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/train.py -------------------------------------------------------------------------------- /train_con.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/train_con.py -------------------------------------------------------------------------------- /train_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/train_face.py -------------------------------------------------------------------------------- /train_mface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/train_mface.py -------------------------------------------------------------------------------- /train_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/train_pose.py -------------------------------------------------------------------------------- /train_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/train_seg.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/util/html.py -------------------------------------------------------------------------------- /util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/util/image_pool.py -------------------------------------------------------------------------------- /util/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/util/label.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/util/util.py -------------------------------------------------------------------------------- /util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/util/visualizer.py -------------------------------------------------------------------------------- /val_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/val_gen.py -------------------------------------------------------------------------------- /vis_bdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/vis_bdd.py -------------------------------------------------------------------------------- /vis_delta.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /vis_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/vis_face.py -------------------------------------------------------------------------------- /vis_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxjyxxme/pix2pixSC/HEAD/vis_pose.py --------------------------------------------------------------------------------