AForge is a popular .Net library for image processing and computer vision. It features a lot of image filters, noise generators, or other image-related algorithms. Since it’s written in C#, and given the very parallel nature of most of image processing algorithms, we tried to hybridize some of them. AForge code make heavy use of […]

READ MORE

Tags: , ,


It’s often useful to use intrinsics or builtin functions provided by CUDA. You might also already have a very optimized cuda header which you’d like to reuse from your C# application. This can be done using IntrinsicFunction attribute. When generating the source code, the function call is replaced by the IntrinsicFunction name, and the contents […]

READ MORE

Tags: ,