convolve-nd 0.1.0

A small library to perform convolution operations on arrays of upto 3 dimensions using arbitrarily-sized separable kernels
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Array Convolution Using Separable Kernel

This project provides an implementation for convolving signals of upto 3 dimensions with separable kernels of arbitrary size. The library is aimed to provide a fast implementation with 0 dependencies other than `nd-array`.

## Usage

View examples directory for some basic usage examples

## Installation

To use this library in your Rust project, add the following to your `Cargo.toml` file:

```toml
[dependencies]
convolve-nd = "0.1.0"