I'm trying to do image processing on the GPU with .NET. I've downloaded OpenCL.NET wrapper. It has some good samples, but I cannot find a way to load an image to the GPU and read the processed image back. What do I have to do?
相关问题
- OpenCL:Why Pointer to a pointer cannot be passed a
- AMD CPU versus Intel CPU openCL
- OpenCL on Linux with integrated intel graphic chip
- OpenCl cleanup causes segfault
- Writing a fast linear system solver in OpenCL C
相关文章
- thrust: fill isolate space
- OpenCL autocorrelation kernel
- Is it necessary to enqueue read/write when using C
- Differences between cl_khr_fp64 and cl_amd_fp64?
- Using clCreateSubBuffer
- MandelBrot set Using openCL
- Is global synchronization in OpenCL possible?
- Data sharing between CPU and GPU on modern x86 har
After setting up the context, do the following:
OpenCL kernel used in this example:
*Complete article available at codeproject.com