Kinetic Visualization (Visualisierung 2 - S2012)
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
HistogramGenerator.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vlCore\Image.hpp>
4 
6 
10 {
11 public:
13  HistogramGenerator(int nBins, vl::Image *image, bool countZeros = false);
14  ~HistogramGenerator(void);
15 
17  std::vector<float> getHistogram() const { return _histogram; }
18 private:
19  void generate();
20  int getBin(float v);
21 
23  vl::Image *_image;
25  int _nBins;
29  std::vector<float> _histogram;
30 };
31