convolve-nd 0.1.0

A small library to perform convolution operations on arrays of upto 3 dimensions using arbitrarily-sized separable kernels
Documentation
[dependencies.ndarray]
version = "0.16.1"

[dev-dependencies.hound]
version = "3.5.1"

[dev-dependencies.image]
version = "0.25.5"

[[example]]
name = "1d"
path = "examples/1d.rs"

[[example]]
name = "audio"
path = "examples/audio.rs"

[[example]]
name = "image-color"
path = "examples/image_color.rs"

[[example]]
name = "image-monochrome"
path = "examples/image_monochrome.rs"

[lib]
name = "convolve_nd"
path = "src/lib.rs"

[package]
authors = ["Anshul Sanghi <anshul@anshulsanghi.tech>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["multimedia"]
description = "A small library to perform convolution operations on arrays of upto 3 dimensions using arbitrarily-sized separable kernels"
edition = "2021"
homepage = "https://github.com/anshap1719/convolve-nd"
keywords = ["image", "audio", "convolution", "kernel", "analysis"]
license = "MIT"
name = "convolve-nd"
readme = "README.md"
repository = "https://github.com/anshap1719/convolve-nd"
version = "0.1.0"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"