[package]
edition = "2024"
name = "ndarray-ndimage"
version = "0.6.0"
authors = ["Nil Goyette <nil.goyette@imeka.ca>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multidimensional image processing for ArrayBase, the n-dimensional array data structure provided by ndarray."
readme = "README.md"
keywords = [
"array",
"image",
"multidimensional",
"matrix",
"ndarray",
]
categories = [
"data-structures",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/imeka/ndarray-ndimage"
[lib]
name = "ndarray_ndimage"
path = "src/lib.rs"
[[test]]
name = "filters"
path = "tests/filters.rs"
[[test]]
name = "measurements"
path = "tests/measurements.rs"
[[test]]
name = "morphology"
path = "tests/morphology.rs"
[[test]]
name = "pad"
path = "tests/pad.rs"
[[test]]
name = "spline_filter"
path = "tests/spline_filter.rs"
[[test]]
name = "zoom_shift"
path = "tests/zoom_shift.rs"
[dependencies.ndarray]
version = "0.17"
features = ["approx"]
[dependencies.ndarray-stats]
version = "0.7"
[dependencies.num-traits]
version = "0.2"
default-features = false
[dev-dependencies.approx]
version = "0.5"