feat(ndcv-bridge): add ndcv-bridge for ndarray and opencv interaction
This commit is contained in:
35
ndcv-bridge/Cargo.toml
Normal file
35
ndcv-bridge/Cargo.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[package]
|
||||
name = "ndcv-bridge"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
bbox.workspace = true
|
||||
bytemuck.workspace = true
|
||||
error-stack.workspace = true
|
||||
fast_image_resize.workspace = true
|
||||
ndarray = { workspace = true, features = ["rayon"] }
|
||||
num.workspace = true
|
||||
opencv = { workspace = true, optional = true }
|
||||
rayon = "1.10.0"
|
||||
thiserror.workspace = true
|
||||
tracing = "0.1.41"
|
||||
wide = "0.7.32"
|
||||
img-parts.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
divan.workspace = true
|
||||
ndarray-npy.workspace = true
|
||||
|
||||
[features]
|
||||
opencv = ["dep:opencv"]
|
||||
default = ["opencv"]
|
||||
|
||||
|
||||
[[bench]]
|
||||
name = "conversions"
|
||||
harness = false
|
||||
|
||||
[[bench]]
|
||||
name = "gaussian"
|
||||
harness = false
|
||||
Reference in New Issue
Block a user