MT_lightnessMask.hpp 317 B

12345678910111213141516
  1. #ifndef MT_LIGHTNESSMASK__HPP
  2. #define MT_LIGHTNESSMASK__HPP
  3. class MT_lightnessMask
  4. {
  5. public:
  6. float* data;
  7. unsigned int length;
  8. float* colorDataY;
  9. bool* mask;
  10. MT_lightnessMask(float* d = NULL, unsigned int l = 0, float* c = NULL, bool* m = NULL) :data(d), length(l), colorDataY(c), mask(m) {};
  11. };
  12. #endif