MT_exposure.hpp 244 B

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