1 2 3 4 5 6 7 8 9 10 11 12
#ifndef ALGORITHMS_CPU_HPP #define ALGORITHMS_CPU_HPP #include "image.hpp" extern "C" { void convert_to_grayscale_cpu(Image &image); void convolve_image_cpu(Image *image, const float *kernel, int kernel_width, int kernel_height); } #endif // ALGORITHMS_CPU_HPP