image_enhance.cuh 400 B

12345678910111213
  1. #ifndef IMAGE_ENHANCE_CUH
  2. #define IMAGE_ENHANCE_CUH
  3. #include <cuda.h>
  4. namespace image_enhance_impl {
  5. float call_reduce_lum_mean(const uchar3 *in, float *buf, uint32_t num,
  6. cudaStream_t stream);
  7. void call_aces_enhance(const uchar3 *in, uchar3 *out, uint32_t num,
  8. float lum_factor, cudaStream_t stream);
  9. }
  10. #endif //IMAGE_ENHANCE_CUH