├── Audios ├── italian.wav ├── military.wav ├── photo.wav ├── record.wav ├── recorder.wav └── watch.wav ├── Get_landmarks.py ├── LICENSE ├── README.md ├── Rec ├── FacePartsSwap │ ├── Matrix_operations.py │ ├── _3DMM.py │ └── face_swap.py ├── Get_landmarks.py ├── Values │ ├── coma_landmarks.mat │ ├── faces.npy │ ├── land_extracted.ply │ └── new_landmarks.ply ├── captured_image.jpg └── template.ply ├── S2D ├── Data_processing.py ├── Get_landmarks.py ├── autoencoder_dataset.py ├── coma_data_processing.py ├── models.py ├── save_meshes.py ├── shape_data.py ├── spiral_utils.py ├── template │ ├── flame_model │ │ ├── FLAME_sample.ply │ │ ├── flame_dynamic_embedding.npy │ │ ├── flame_static_embedding.pkl │ │ └── template.obj │ └── template │ │ ├── Normalized_d_NoInversedweights.npy │ │ ├── Normalized_d_weights.npy │ │ └── downsampling_matrices.pkl ├── test_funcs.py ├── train_S2D.py └── train_funcs.py ├── S2L ├── data_loader.py ├── model.py ├── train_S2L.py ├── vocaset │ ├── Get_landmarks.py │ ├── flame_model │ │ ├── FLAME_sample.ply │ │ ├── flame_dynamic_embedding.npy │ │ ├── flame_static_embedding.pkl │ │ └── template.obj │ ├── process_voca_data.py │ └── templates.pkl └── wav2vec.py ├── demo.py ├── demo_with_rec.py ├── images ├── framework.png ├── s2d.png └── s2l.png └── template ├── flame_model ├── FLAME_sample.ply ├── flame_dynamic_embedding.npy ├── flame_static_embedding.pkl └── template.obj └── template ├── Normalized_d_NoInversedweights.npy ├── Normalized_d_weights.npy └── downsampling_matrices.pkl /Audios/italian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Audios/italian.wav -------------------------------------------------------------------------------- /Audios/military.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Audios/military.wav -------------------------------------------------------------------------------- /Audios/photo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Audios/photo.wav -------------------------------------------------------------------------------- /Audios/record.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Audios/record.wav -------------------------------------------------------------------------------- /Audios/recorder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Audios/recorder.wav -------------------------------------------------------------------------------- /Audios/watch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Audios/watch.wav -------------------------------------------------------------------------------- /Get_landmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Get_landmarks.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/README.md -------------------------------------------------------------------------------- /Rec/FacePartsSwap/Matrix_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/FacePartsSwap/Matrix_operations.py -------------------------------------------------------------------------------- /Rec/FacePartsSwap/_3DMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/FacePartsSwap/_3DMM.py -------------------------------------------------------------------------------- /Rec/FacePartsSwap/face_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/FacePartsSwap/face_swap.py -------------------------------------------------------------------------------- /Rec/Get_landmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/Get_landmarks.py -------------------------------------------------------------------------------- /Rec/Values/coma_landmarks.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/Values/coma_landmarks.mat -------------------------------------------------------------------------------- /Rec/Values/faces.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/Values/faces.npy -------------------------------------------------------------------------------- /Rec/Values/land_extracted.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/Values/land_extracted.ply -------------------------------------------------------------------------------- /Rec/Values/new_landmarks.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/Values/new_landmarks.ply -------------------------------------------------------------------------------- /Rec/captured_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/captured_image.jpg -------------------------------------------------------------------------------- /Rec/template.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/Rec/template.ply -------------------------------------------------------------------------------- /S2D/Data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/Data_processing.py -------------------------------------------------------------------------------- /S2D/Get_landmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/Get_landmarks.py -------------------------------------------------------------------------------- /S2D/autoencoder_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/autoencoder_dataset.py -------------------------------------------------------------------------------- /S2D/coma_data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/coma_data_processing.py -------------------------------------------------------------------------------- /S2D/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/models.py -------------------------------------------------------------------------------- /S2D/save_meshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/save_meshes.py -------------------------------------------------------------------------------- /S2D/shape_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/shape_data.py -------------------------------------------------------------------------------- /S2D/spiral_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/spiral_utils.py -------------------------------------------------------------------------------- /S2D/template/flame_model/FLAME_sample.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/flame_model/FLAME_sample.ply -------------------------------------------------------------------------------- /S2D/template/flame_model/flame_dynamic_embedding.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/flame_model/flame_dynamic_embedding.npy -------------------------------------------------------------------------------- /S2D/template/flame_model/flame_static_embedding.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/flame_model/flame_static_embedding.pkl -------------------------------------------------------------------------------- /S2D/template/flame_model/template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/flame_model/template.obj -------------------------------------------------------------------------------- /S2D/template/template/Normalized_d_NoInversedweights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/template/Normalized_d_NoInversedweights.npy -------------------------------------------------------------------------------- /S2D/template/template/Normalized_d_weights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/template/Normalized_d_weights.npy -------------------------------------------------------------------------------- /S2D/template/template/downsampling_matrices.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/template/template/downsampling_matrices.pkl -------------------------------------------------------------------------------- /S2D/test_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/test_funcs.py -------------------------------------------------------------------------------- /S2D/train_S2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/train_S2D.py -------------------------------------------------------------------------------- /S2D/train_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2D/train_funcs.py -------------------------------------------------------------------------------- /S2L/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/data_loader.py -------------------------------------------------------------------------------- /S2L/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/model.py -------------------------------------------------------------------------------- /S2L/train_S2L.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/train_S2L.py -------------------------------------------------------------------------------- /S2L/vocaset/Get_landmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/Get_landmarks.py -------------------------------------------------------------------------------- /S2L/vocaset/flame_model/FLAME_sample.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/flame_model/FLAME_sample.ply -------------------------------------------------------------------------------- /S2L/vocaset/flame_model/flame_dynamic_embedding.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/flame_model/flame_dynamic_embedding.npy -------------------------------------------------------------------------------- /S2L/vocaset/flame_model/flame_static_embedding.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/flame_model/flame_static_embedding.pkl -------------------------------------------------------------------------------- /S2L/vocaset/flame_model/template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/flame_model/template.obj -------------------------------------------------------------------------------- /S2L/vocaset/process_voca_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/process_voca_data.py -------------------------------------------------------------------------------- /S2L/vocaset/templates.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/vocaset/templates.pkl -------------------------------------------------------------------------------- /S2L/wav2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/S2L/wav2vec.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/demo.py -------------------------------------------------------------------------------- /demo_with_rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/demo_with_rec.py -------------------------------------------------------------------------------- /images/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/images/framework.png -------------------------------------------------------------------------------- /images/s2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/images/s2d.png -------------------------------------------------------------------------------- /images/s2l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/images/s2l.png -------------------------------------------------------------------------------- /template/flame_model/FLAME_sample.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/flame_model/FLAME_sample.ply -------------------------------------------------------------------------------- /template/flame_model/flame_dynamic_embedding.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/flame_model/flame_dynamic_embedding.npy -------------------------------------------------------------------------------- /template/flame_model/flame_static_embedding.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/flame_model/flame_static_embedding.pkl -------------------------------------------------------------------------------- /template/flame_model/template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/flame_model/template.obj -------------------------------------------------------------------------------- /template/template/Normalized_d_NoInversedweights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/template/Normalized_d_NoInversedweights.npy -------------------------------------------------------------------------------- /template/template/Normalized_d_weights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/template/Normalized_d_weights.npy -------------------------------------------------------------------------------- /template/template/downsampling_matrices.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FedeNoce/s2l-s2d/HEAD/template/template/downsampling_matrices.pkl --------------------------------------------------------------------------------