MT_histogram_regularization.hpp 383 B

12345678910111213141516
  1. #ifndef MT_HISTOGRAM_REGULARIZATION__HPP
  2. #define MT_HISTOGRAM_REGULARIZATION__HPP
  3. class MT_histogram_regularization
  4. {
  5. public:
  6. float* data;
  7. unsigned int length;
  8. float* colorDataY;
  9. float* colorDataFY;
  10. MT_histogram_regularization(float* d = NULL, unsigned int l = 0, float* cy = NULL, float* cfy = NULL) :data(d), length(l), colorDataY(cy), colorDataFY(cfy) {};
  11. };
  12. #endif