comparison dsp/segmentation/SavedFeatureSegmenter.h @ 20:8bdbda7fb893

* First cut at properly integrating the segmenter and making it work right
author cannam
date Wed, 09 Jan 2008 16:50:04 +0000
parents 8e90a56b4b5f
children
comparison
equal deleted inserted replaced
19:d3a856b44c43 20:8bdbda7fb893
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