-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
41 lines (38 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "ndarray-vision"
version = "0.5.1"
authors = ["xd009642 <[email protected]>"]
description = "A computer vision library built on top of ndarray"
repository = "https://github.com/xd009642/ndarray-vision"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["image", "vision", "image-processing"]
categories = ["science", "science::robotics", "multimedia", "multimedia::images", "graphics"]
edition = "2018"
[features]
default = ["enhancement", "format", "morphology", "processing", "transform" ]
enhancement = []
format = []
morphology = []
processing = []
netlib = ["ndarray-linalg/netlib"]
openblas = ["ndarray-linalg/openblas"]
intel-mkl = ["ndarray-linalg/intel-mkl"]
transform = ["ndarray-linalg"]
[dependencies]
ndarray = { version = "0.15", default-features = false }
ndarray-stats = { version = "0.5", default-features = false }
ndarray-linalg = { version = "0.16", default-features = false, optional = true }
noisy_float = { version = "0.2", default-features = false }
num-traits = { version = "0.2", default-features = false }
[dev-dependencies]
# Note: building with `cargo test` requires a linalg backend specified
# CI uses `cargo test --features=intel-mkl`
# See ndarray-linagl's README for more information
ndarray = { version = "0.15", features = ["approx"] }
ndarray-rand = "0.14.0"
rand = "0.8"
assert_approx_eq = "1.1.0"
approx = "0.4"
noisy_float = "0.2"
png = "0.17"