Mercurial > hg > aimc
diff trunk/src/Support/ModuleFactory.cc @ 570:4b37b53105a3
Add support for outputting featutes using OSC (for use with the Wekinator, etc).
author | tomwalters@google.com |
---|---|
date | Fri, 22 Jun 2012 12:22:08 +0000 |
parents | 6bc760be184b |
children | f56d2eedd878 |
line wrap: on
line diff
--- a/trunk/src/Support/ModuleFactory.cc Fri Jun 22 12:17:24 2012 +0000 +++ b/trunk/src/Support/ModuleFactory.cc Fri Jun 22 12:22:08 2012 +0000 @@ -23,6 +23,7 @@ #include "Modules/NAP/ModuleHCL.h" #include "Modules/Output/FileOutputHTK.h" #include "Modules/Output/FileOutputAIMC.h" +#include "Modules/Output/OSCOutput.h" #include "Modules/Output/Graphics/GraphicsViewTime.h" #include "Modules/Profile/ModuleSlice.h" #include "Modules/Profile/ModuleScaler.h" @@ -57,6 +58,9 @@ if (module_name_.compare("htk_out") == 0) return new FileOutputHTK(params); + if (module_name_.compare("osc_out") == 0) + return new OSCOutput(params); + if (module_name_.compare("aimc_out") == 0) return new FileOutputAIMC(params);