comparison dsp/segmentation/SavedFeatureSegmenter.h @ 245:cdfd0948a852

* First cut at properly integrating the segmenter and making it work right
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 09 Jan 2008 16:50:04 +0000
parents dc30e3864ceb
children
comparison
equal deleted inserted replaced
244:f599563a4663 245:cdfd0948a852
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "segment.h" 12 #include "segment.h"
13 #include "Segmenter.h" 13 #include "Segmenter.h"
14 #include "hmm.h" 14 #include "hmm/hmm.h"
15 15
16 using std::vector; 16 using std::vector;
17 17
18 class SavedFeatureSegmenterParams 18 class SavedFeatureSegmenterParams
19 { 19 {
57 // clustering parameters 57 // clustering parameters
58 int nclusters; 58 int nclusters;
59 int histogramLength; 59 int histogramLength;
60 int neighbourhoodLimit; 60 int neighbourhoodLimit;
61 }; 61 };
62