-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (53 loc) · 1.3 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
[package]
name = "camera-intrinsic-calibration"
version = "0.5.5"
edition = "2021"
authors = ["Powei Lin <[email protected]>"]
readme = "README.md"
license = "GPL-3.0-or-later"
description = "Camera Intrinsic Calibration"
homepage = "https://github.com/powei-lin/camera-intrinsic"
repository = "https://github.com/powei-lin/camera-intrinsic"
keywords = ["camera-intrinsic", "intrinsic", "fisheye"]
categories = ["data-structures", "science", "mathematics", "science::robotics"]
exclude = [
"/.github/*",
"*.ipynb",
"scripts/*",
"examples/*",
"tests/*",
"data/*",
"docs/*",
]
[dependencies]
aprilgrid = "0.5.3"
camera-intrinsic-model = "0.3.1"
clap = { version = "4.5.24", features = ["derive"] }
colorous = "1.0.15"
env_logger = "0.11.6"
faer = "0.20.2"
glam = "0.29.2"
glob = "0.3.2"
image = "0.25.5"
indicatif = { version = "0.17.9", features = ["rayon"] }
log = "0.4.22"
nalgebra = "0.33.2"
rand = "0.8.5"
rand_chacha = "0.3.1"
rayon = "1.10.0"
rerun = "0.17.0"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
sqpnp_simple = "0.1.5"
time = "0.3.37"
tiny-solver = "0.14.1"
[[bin]]
name = "ccrs"
path = "src/bin/camera_calibration.rs"
test = false
bench = false
[[example]]
name = "convert_model"
path = "examples/convert_model.rs"
[[example]]
name = "test_pnp"