libkovan  1
The kovan standard library
colinear_segmenter.hpp
Go to the documentation of this file.
1 #ifndef _KOVAN_COLINEAR_SEGMENTER_HPP_
2 #define _KOVAN_COLINEAR_SEGMENTER_HPP_
3 
4 #include "segment.hpp"
5 
6 #include <list>
7 
8 class ColinearSegmenter : public Segmenter<int>
9 {
10 public:
11  ColinearSegmenter(const type threshold);
12 
13  virtual std::vector<Segment> findSegments(const type *const data, const unsigned size) const;
14 
15 private:
16  const type _threshold;
17 };
18 
19 #endif
ColinearSegmenter(const type threshold)
Definition: segment.hpp:15
Definition: colinear_segmenter.hpp:8
int type
Definition: segment.hpp:18
virtual std::vector< Segment > findSegments(const type *const data, const unsigned size) const