StaticKernels.jl
StaticKernels.jl copied to clipboard
Julia-native non-allocating kernel operations on arrays
In the following code there is type instability of the `map()`: ```julia using StaticKernels; numRows = 400; numCols = 400; mI = rand(numRows, numCols); kernelRadius = 5; kernelLen = (2...
Allow more flexibility in output axes. Currently we only allow - output axes shrinked to applicable domain (no extension) - output axes matching input (when extension is used) ### Discussed...
Hello, This looks like a great addition to Julia for those who are working on Image Processing. I think it is missing documentation. But for now, could you show examples...
In many cases one want to apply the kernel to a multi channels matrix (RGB Image). Is there a way to do so with a single kernel to work on...
I was checking this package out and seeing if it would be able to replace some simple median-filtering code I've got in a package. Previously, I was using ImageFiltering.jl's `mapwindow(median!,...
Hi, I don't know how one could implement this efficiently, but it would be cool to have more granular control over boundary conditions. Imagine for example a cube with periodic...