├── LICENSE.txt ├── README.md ├── assets ├── idea.png └── method.png ├── requirements.txt └── src ├── Dataset └── readme.txt ├── ES2D ├── Get_landmarks.py ├── data_loader.py ├── es2d.py ├── saves │ ├── readme.txt │ └── s2d.tar ├── shape_data.py ├── spiral_utils.py └── train_s2d.py ├── ES2L ├── Get_landmarks.py ├── data_loader.py ├── es2l.py ├── saves │ └── readme.txt ├── train_es2l.py └── wav2vec.py ├── EmoVOCA_generator ├── New_Conditions │ ├── COMA_CH01 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH02 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH03 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH04 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH05 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH06 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH07 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH08 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH09 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH10 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ ├── COMA_CH11 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply │ └── COMA_CH12 │ │ ├── Afraid_30.ply │ │ ├── Disgust_30.ply │ │ ├── Drunk2_30.ply │ │ ├── Ill_30.ply │ │ ├── Irritated1_30.ply │ │ ├── Moody_30.ply │ │ ├── Pleased_30.ply │ │ ├── Sad1_30.ply │ │ ├── Smile2_30.ply │ │ ├── Suspicious_30.ply │ │ └── Upset_30.ply ├── emovoca_generator.py ├── emovoca_model.py ├── generate_condition_meshes.py ├── saves │ └── readme.txt ├── shape_data.py └── spiral_utils.py ├── Example └── photo.wav ├── demo.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 /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/README.md -------------------------------------------------------------------------------- /assets/idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/assets/idea.png -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/assets/method.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/Dataset/readme.txt: -------------------------------------------------------------------------------- 1 | Add Datasets here 2 | 3 | -------------------------------------------------------------------------------- /src/ES2D/Get_landmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/Get_landmarks.py -------------------------------------------------------------------------------- /src/ES2D/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/data_loader.py -------------------------------------------------------------------------------- /src/ES2D/es2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/es2d.py -------------------------------------------------------------------------------- /src/ES2D/saves/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ES2D/saves/s2d.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/saves/s2d.tar -------------------------------------------------------------------------------- /src/ES2D/shape_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/shape_data.py -------------------------------------------------------------------------------- /src/ES2D/spiral_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/spiral_utils.py -------------------------------------------------------------------------------- /src/ES2D/train_s2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2D/train_s2d.py -------------------------------------------------------------------------------- /src/ES2L/Get_landmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2L/Get_landmarks.py -------------------------------------------------------------------------------- /src/ES2L/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2L/data_loader.py -------------------------------------------------------------------------------- /src/ES2L/es2l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2L/es2l.py -------------------------------------------------------------------------------- /src/ES2L/saves/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ES2L/train_es2l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2L/train_es2l.py -------------------------------------------------------------------------------- /src/ES2L/wav2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/ES2L/wav2vec.py -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH01/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH01/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH02/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH02/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH03/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH03/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH04/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH04/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH05/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH05/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH06/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH06/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH07/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH07/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH08/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH08/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH09/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH09/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH10/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH10/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH11/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH11/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Afraid_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Afraid_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Disgust_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Disgust_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Drunk2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Drunk2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Ill_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Ill_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Irritated1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Irritated1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Moody_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Moody_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Pleased_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Pleased_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Sad1_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Sad1_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Smile2_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Smile2_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Suspicious_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Suspicious_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/New_Conditions/COMA_CH12/Upset_30.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/New_Conditions/COMA_CH12/Upset_30.ply -------------------------------------------------------------------------------- /src/EmoVOCA_generator/emovoca_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/emovoca_generator.py -------------------------------------------------------------------------------- /src/EmoVOCA_generator/emovoca_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/emovoca_model.py -------------------------------------------------------------------------------- /src/EmoVOCA_generator/generate_condition_meshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/generate_condition_meshes.py -------------------------------------------------------------------------------- /src/EmoVOCA_generator/saves/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EmoVOCA_generator/shape_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/shape_data.py -------------------------------------------------------------------------------- /src/EmoVOCA_generator/spiral_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/EmoVOCA_generator/spiral_utils.py -------------------------------------------------------------------------------- /src/Example/photo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/Example/photo.wav -------------------------------------------------------------------------------- /src/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/demo.py -------------------------------------------------------------------------------- /src/template/flame_model/FLAME_sample.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/flame_model/FLAME_sample.ply -------------------------------------------------------------------------------- /src/template/flame_model/flame_dynamic_embedding.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/flame_model/flame_dynamic_embedding.npy -------------------------------------------------------------------------------- /src/template/flame_model/flame_static_embedding.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/flame_model/flame_static_embedding.pkl -------------------------------------------------------------------------------- /src/template/flame_model/template.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/flame_model/template.obj -------------------------------------------------------------------------------- /src/template/template/Normalized_d_NoInversedweights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/template/Normalized_d_NoInversedweights.npy -------------------------------------------------------------------------------- /src/template/template/Normalized_d_weights.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/template/Normalized_d_weights.npy -------------------------------------------------------------------------------- /src/template/template/downsampling_matrices.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miccunifi/EmoVOCA/HEAD/src/template/template/downsampling_matrices.pkl --------------------------------------------------------------------------------