drc_callbacks.h 390 B

123456789101112131415161718192021222324
  1. #ifndef _NPU_CV_DRC_CALLBACKS_H_
  2. #define _NPU_CV_DRC_CALLBACKS_H_
  3. #include "ax_base_type.h"
  4. #include "ax_global_type.h"
  5. #include <string>
  6. #include <vector>
  7. #include "ax_interpreter_external_api.h"
  8. #include "npu_common.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. float sigmoid(float x);
  13. float rgb2lab_call_back(float x);
  14. float gamma_call_back(float x);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif