-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
94 lines (71 loc) · 1.94 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "vision"
version = "0.1.0"
authors = ["Marc Haubenstock <[email protected]>"]
edition = '2018'
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = "*"
openblas-src = {version = "*", features = ["static"]}
nalgebra = {version="*", features=["rand-no-std"]}
nalgebra-lapack = {version ="*"}
nalgebra-sparse = {version ="*"}
rand = {version = "*", features = ["small_rng"] }
rand_distr = "*"
optimization_engine = "*"
plotters = { version = "*", default_features = true}
color-eyre = "0.5"
serde = { version = "*", features = ["derive"] }
serde_yaml = "*"
num-traits = "*"
simba = "*"
num-complex = "*"
clarabel = { git = "https://github.com/oxfordcontrol/Clarabel.rs.git"}
models-cv = { git = "https://github.com/geoeo/models-cv.git"}
termion = "*"
[dev-dependencies]
kiss3d = "*"
[profile.release]
debug = 0
strip = "none"
[profile.dev]
[profile.test]
[profile.bench]
debug = 2
strip = "debuginfo"
[[example]]
name = "orb_ba_features"
path = "examples/image_processing/orb_ba_features.rs"
[[example]]
name = "orb_pyramid_match"
path = "examples/image_processing/orb_pyramid_match.rs"
[[example]]
name = "orb_pyramid"
path = "examples/image_processing/orb_pyramid.rs"
[[example]]
name = "fast_descriptor"
path = "examples/image_processing/fast_descriptor.rs"
[[example]]
name = "epipolar_five_point"
path = "examples/image_processing/epipolar_five_point.rs"
[[example]]
name = "epipolar_eight_point"
path = "examples/image_processing/epipolar_eight_point.rs"
[[example]]
name = "blur"
path = "examples/image_processing/blur.rs"
[[example]]
name = "pointcloud"
path = "examples/visualizing/pointcloud.rs"
[[example]]
name = "olsson_ba"
path = "examples/ba/olsson.rs"
[[example]]
name = "synthetic_ba"
path = "examples/ba/synthetic.rs"
[[example]]
name = "synthetic_pnp"
path = "examples/pnp/synthetic.rs"
[[example]]
name = "io_matrix"
path = "examples/io/matrix.rs"