[package]
edition = "2021"
rust-version = "1.88"
name = "projective-grid"
version = "0.9.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic 2D projective grid graph construction, traversal, and homography tools"
homepage = "https://vitalyvorobyev.github.io/calib-targets-rs/"
documentation = "https://vitalyvorobyev.github.io/calib-targets-rs/api"
readme = "README.md"
keywords = [
"computer-vision",
"geometry",
"homography",
"grid",
"calibration",
]
categories = [
"computer-vision",
"science",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/VitalyVorobyev/calib-targets-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
tracing = ["dep:tracing"]
[lib]
name = "projective_grid"
path = "src/lib.rs"
[[example]]
name = "multi_component"
path = "examples/multi_component.rs"
[[example]]
name = "regular_grid"
path = "examples/regular_grid.rs"
[[example]]
name = "regular_grid_tuning"
path = "examples/regular_grid_tuning.rs"
[[test]]
name = "regular_grid"
path = "tests/regular_grid.rs"
[[test]]
name = "square_policy_advanced"
path = "tests/square_policy_advanced.rs"
[[bench]]
name = "grow"
path = "benches/grow.rs"
harness = false
[[bench]]
name = "homography"
path = "benches/homography.rs"
harness = false
[[bench]]
name = "merge"
path = "benches/merge.rs"
harness = false
[[bench]]
name = "topological"
path = "benches/topological.rs"
harness = false
[[bench]]
name = "validate"
path = "benches/validate.rs"
harness = false
[dependencies.delaunator]
version = "1.0"
[dependencies.kiddo]
version = "5"
[dependencies.nalgebra]
version = "0.34"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
optional = true
[dev-dependencies.criterion]
version = "0.5"
features = [
"cargo_bench_support",
"html_reports",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
too_many_arguments = "deny"