Skip to content

Commit

Permalink
Base ETA prediction on median to mitigate outliers (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
bencevans authored Jan 10, 2023
1 parent 16b6421 commit 6e4f6ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ opencv-yolov5 = { git = "https://github.com/bencevans/rust-opencv-yolov5", rev =
image = { version = "0.24.5", features = ["rgb"] }
imageproc = "0.23.0"
rayon = "1.6.1"
chug = "1.0.0"
chug = "1.1.0"

[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = [ "custom-protocol" ]
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = [ "tauri/custom-protocol" ]
custom-protocol = ["tauri/custom-protocol"]

# Enables CUDA OpenCV support
cuda = ["opencv-yolov5/cuda"]

0 comments on commit 6e4f6ab

Please sign in to comment.