2016-04-28 19:40:36 +00:00
|
|
|
% This is sort of the unit test for the whole module (needs datasets)
|
2017-01-04 22:32:38 +00:00
|
|
|
% Will take several hours to run all
|
|
|
|
clear
|
2016-04-28 19:40:36 +00:00
|
|
|
tic
|
|
|
|
%% Head pose
|
|
|
|
cd('Head Pose Experiments');
|
|
|
|
run_head_pose_tests_OpenFace;
|
2017-10-22 19:02:54 +00:00
|
|
|
assert(median(all_errors_biwi_OF(:)) < 2.8);
|
2016-04-28 19:40:36 +00:00
|
|
|
assert(median(all_errors_bu_OF(:)) < 2.2);
|
|
|
|
assert(median(all_errors_ict_OF(:)) < 2.1);
|
|
|
|
cd('../');
|
|
|
|
|
|
|
|
%% Features
|
|
|
|
cd('Feature Point Experiments');
|
2017-01-04 22:32:38 +00:00
|
|
|
run_OpenFace_feature_point_tests_300W;
|
2016-04-28 19:40:36 +00:00
|
|
|
assert(median(err_clnf) < 0.041);
|
|
|
|
assert(median(err_clnf_wild) < 0.041);
|
|
|
|
run_yt_dataset;
|
|
|
|
assert(median(clnf_error) < 0.053);
|
|
|
|
cd('../');
|
|
|
|
|
|
|
|
%% AUs
|
|
|
|
cd('Action Unit Experiments');
|
2017-10-23 17:05:15 +00:00
|
|
|
run_AU_prediction_Bosphorus
|
|
|
|
assert(mean(cccs_reg) > 0.56);
|
2017-12-06 15:43:55 +00:00
|
|
|
assert(mean(f1s_class) > 0.49);
|
2017-10-23 17:05:15 +00:00
|
|
|
|
|
|
|
run_AU_prediction_BP4D
|
|
|
|
assert(mean(ints_cccs) > 0.6);
|
|
|
|
assert(mean(f1s_class) > 0.6);
|
|
|
|
|
2016-04-28 19:40:36 +00:00
|
|
|
run_AU_prediction_DISFA
|
2016-07-22 13:35:50 +00:00
|
|
|
assert(mean(au_res) > 0.7);
|
|
|
|
|
|
|
|
run_AU_prediction_SEMAINE
|
2017-08-01 21:11:02 +00:00
|
|
|
assert(mean(f1s) > 0.41);
|
2016-07-22 13:35:50 +00:00
|
|
|
|
|
|
|
run_AU_prediction_FERA2011
|
2016-07-22 15:28:45 +00:00
|
|
|
assert(mean(au_res) > 0.5);
|
2016-07-22 13:35:50 +00:00
|
|
|
|
2016-04-28 19:40:36 +00:00
|
|
|
cd('../');
|
|
|
|
|
|
|
|
%% Gaze
|
|
|
|
cd('Gaze Experiments');
|
|
|
|
extract_mpii_gaze_test
|
2017-12-16 13:14:02 +00:00
|
|
|
assert(mean_error < 9.6)
|
2016-07-22 13:35:50 +00:00
|
|
|
assert(median_error < 9.0)
|
2016-04-28 19:40:36 +00:00
|
|
|
cd('../');
|
|
|
|
|
|
|
|
%% Demos
|
2017-12-10 14:49:59 +00:00
|
|
|
clear;
|
|
|
|
close all;
|
2016-04-28 19:40:36 +00:00
|
|
|
cd('Demos');
|
|
|
|
run_demo_images;
|
|
|
|
run_demo_videos;
|
|
|
|
run_demo_video_multi;
|
2017-11-24 17:16:15 +00:00
|
|
|
run_demo_align_size;
|
2017-12-17 14:16:45 +00:00
|
|
|
run_test_img_seq;
|
2016-04-28 19:40:36 +00:00
|
|
|
feature_extraction_demo_vid;
|
|
|
|
feature_extraction_demo_img_seq;
|
|
|
|
gaze_extraction_demo_vid;
|
|
|
|
cd('../');
|
|
|
|
toc
|