A lot of changes:

- New AU recognition models trained on extra datasets - Bosphorus, UNBC, FERA2011
- Cleaner and clearer separation of static and dynamic AU models
- AU training code cleaned up and instructions added
- bug fixes with median feature computation
- AU prediction correction (smoothing and shifting) with post processing
This commit is contained in:
Tadas Baltrusaitis
2016-07-22 09:35:50 -04:00
parent 146dcd5e5b
commit 2128589309
384 changed files with 1273 additions and 606 deletions

View File

@@ -384,7 +384,7 @@ void get_image_input_output_params(vector<string> &input_image_files, vector<str
path image_loc(input_image_files[i]);
path fname = image_loc.filename();
fname = fname.replace_extension("jpg");
fname = fname.replace_extension("bmp");
output_image_files.push_back(out_img_dir + "/" + fname.string());
}