Add OpenCL implementation of Rotate function
We have Rotate function implementation which locates in src/image_function.h and src/image_function.cpp files:
void Rotate( const Image & in, double centerXIn, double centerYIn, Image & out, double centerXOut, double centerYOut, double angle );
We want to add OpenCL implementation of the same function. Please put this implementation into src/opencl/image_function_opencl.h and src/opencl/image_function_opencl.cpp Use an existing code style of format to do it so it should pretty straightforward.
Hi, @MatthewMcGonagle would you like to implement this as well?
By the way, @MatthewMcGonagle , have you tested Rotate function on some example? Ideal example is to have black image with white rectangle in the center. Rotate image to see the result which is visibly identify.