| 12345678910111213 |
- #ifndef IMAGE_ENHANCE_CUH
- #define IMAGE_ENHANCE_CUH
- #include <cuda.h>
- namespace image_enhance_impl {
- float call_reduce_lum_mean(const uchar3 *in, float *buf, uint32_t num,
- cudaStream_t stream);
- void call_aces_enhance(const uchar3 *in, uchar3 *out, uint32_t num,
- float lum_factor, cudaStream_t stream);
- }
- #endif //IMAGE_ENHANCE_CUH
|