Full_process.hpp 667 B

123456789101112131415161718
  1. #ifndef FULL_PROCESS__HPP
  2. #define FULL_PROCESS__HPP
  3. #ifdef HDRIP_EXPORTS
  4. #define HDRIP_API __declspec(dllexport)
  5. #else
  6. #define HDRIP_API __declspec(dllimport)
  7. #endif
  8. extern "C" HDRIP_API float* full_process(float* data, unsigned int width, unsigned int height,
  9. float exposure,
  10. float contrast,
  11. float yCs, float yCb, float yCm, float yCw, float yCh,
  12. bool lms, bool lmb, bool lmm, bool lmw, bool lmh,
  13. float saturation,
  14. float ce_sel_light_l, float ce_sel_light_h, float ce_sel_chr_l, float ce_sel_chr_h, float ce_sel_hue_l, float ce_sel_hue_h, float ce_tol, float ce_edit_hue, float ce_edit_expo, float ce_edit_con, float ce_edit_sat, bool ce_mask);
  15. #endif