comparison trunk/SConstruct @ 305:ed91095d9240

-New AIMCopy main for the SSI features (temporary hack till I get a working module load system) -LocalMax strobe criterion. This is faster and better than the parabola version, which still seems buggy. -Noise generator module. Adds noise to a signal. Uses boost for the random number generator. -New options for the SSI -Slice now respects all its flags (oops!). -MATLAB functions for visualisation -Scripts for generating data to view in MATLAB -Script to download and build HTK - useful for running experiments
author tomwalters
date Thu, 25 Feb 2010 22:02:00 +0000
parents 57e6c567461c
children 1c58a6f354e2
comparison
equal deleted inserted replaced
304:e4f704f67ca6 305:ed91095d9240
39 'Modules/Input/ModuleFileInput.cc', 39 'Modules/Input/ModuleFileInput.cc',
40 'Modules/BMM/ModuleGammatone.cc', 40 'Modules/BMM/ModuleGammatone.cc',
41 'Modules/BMM/ModulePZFC.cc', 41 'Modules/BMM/ModulePZFC.cc',
42 'Modules/NAP/ModuleHCL.cc', 42 'Modules/NAP/ModuleHCL.cc',
43 'Modules/Strobes/ModuleParabola.cc', 43 'Modules/Strobes/ModuleParabola.cc',
44 'Modules/Strobes/ModuleLocalMax.cc',
44 'Modules/SAI/ModuleSAI.cc', 45 'Modules/SAI/ModuleSAI.cc',
46 'Modules/SNR/ModuleNoise.cc',
45 'Modules/SSI/ModuleSSI.cc', 47 'Modules/SSI/ModuleSSI.cc',
46 'Modules/Profile/ModuleSlice.cc', 48 'Modules/Profile/ModuleSlice.cc',
47 'Modules/Profile/ModuleScaler.cc', 49 'Modules/Profile/ModuleScaler.cc',
48 'Modules/Features/ModuleGaussians.cc', 50 'Modules/Features/ModuleGaussians.cc',
49 'Modules/Output/FileOutputHTK.cc'] 51 'Modules/Output/FileOutputHTK.cc']
50 52
51 # File which contains main() 53 # File which contains main()
52 sources = common_sources + ['Main/AIMCopy.cc'] 54 sources = common_sources + ['Main/AIMCopy_SSI_Features.cc']
53 55
54 # Test sources 56 # Test sources
55 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc'] 57 test_sources = ['Modules/Profile/ModuleSlice_unittest.cc']
56 test_sources += common_sources 58 test_sources += common_sources
57 59