MT_contrast.hpp 244 B

1234567891011121314
  1. #ifndef MT_CONTRAST__HPP
  2. #define MT_CONTRAST__HPP
  3. class MT_contrast
  4. {
  5. public:
  6. float* data;
  7. unsigned int length;
  8. float coeff;
  9. MT_contrast(float* d = NULL, unsigned int l = 0, float c = 0.0) :data(d), length(l), coeff(c) {};
  10. };
  11. #endif