Skip to content

Commit

Permalink
Bump opencv version (#26)
Browse files Browse the repository at this point in the history
* Bump opencv version

* Get it building by reducing the feature scope of opencv

* Bump crate version
  • Loading branch information
ac-freeman authored Mar 25, 2024
1 parent 49aeb86 commit 4e585d6
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "davis-edi-rs"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
authors = ["Andrew C. Freeman"]
description = "A fast, Rust-based, open-source implementation of the paper \"Bringing a Blurry Frame Alive at High Frame-Rate with an Event Camera\" (2019) by Pan et al."
Expand All @@ -13,7 +13,10 @@ categories = ["multimedia::encoding", "science"]
exclude = ["dataset", "**/*.gif"]

[dependencies]
opencv = "0.83.0"
opencv = { version = "0.84.5", default-features = false, features = [
"clang-runtime",
"highgui",
"imgproc","videoio"] }
clap = { version = "4.0.17", features = ["derive"] }
rayon = "1.5"
toml = "0.5.8"
Expand All @@ -33,10 +36,10 @@ async-trait = "0.1.57"


[dependencies.cv-convert]
version = '0.24.1'
version = '0.25.0'
default-features = false
features = [
'opencv_0-83',
'opencv_0-84',
'nalgebra_0-32'
]

Expand Down

0 comments on commit 4e585d6

Please sign in to comment.