I’m working on some image manipulation code in c# and need to do some matrix operations (specifically 2D convolution). I have the code written in matlab which uses the conv2 function … is there a library for C# / .NET that does good high-speed matrix manipulations? I’d be fine if it requires some specific GPU and does the matrix math on-GPU if that’s what it takes.
I’m working on some image manipulation code in c# and need to do some
Share
Emgu is a nice C# port of OpenCV. I’m not sure about your convolution speicifically, but from this link it appears likely.