#ifndef MT_LIGHTNESSMASK__HPP #define MT_LIGHTNESSMASK__HPP class MT_lightnessMask { public: float* data; unsigned int length; float* colorDataY; bool* mask; MT_lightnessMask(float* d = NULL, unsigned int l = 0, float* c = NULL, bool* m = NULL) :data(d), length(l), colorDataY(c), mask(m) {}; }; #endif