img_rcc 0.1.0

A Rust library for image processing with CUDA, C++.
1
2
3
4
5
6
7
8
9
#ifndef COMMON_HPP
#define COMMON_HPP


#include "image.hpp"

extern "C" void transfer_to_gpu(Image *image);
extern "C" void transfer_to_cpu(Image *image);

#endif // COMMON_HPP