[package]
edition = "2021"
rust-version = "1.88"
name = "projective-grid"
version = "0.10.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Image-free, target-agnostic projective grid recovery: label 2D feature points with (i, j) lattice coordinates under perspective"
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 = "check_square_consistency"
path = "examples/check_square_consistency.rs"
[[example]]
name = "detect_dot_grid"
path = "examples/detect_dot_grid.rs"
[[example]]
name = "detect_hex_positions"
path = "examples/detect_hex_positions.rs"
[[example]]
name = "detect_square_oriented2"
path = "examples/detect_square_oriented2.rs"
[[example]]
name = "hello_grid"
path = "examples/hello_grid.rs"
[[test]]
name = "api_contract"
path = "tests/api_contract.rs"
[[test]]
name = "consistency"
path = "tests/consistency.rs"
[[test]]
name = "detect_hex_positions"
path = "tests/detect_hex_positions.rs"
[[test]]
name = "detect_placeholders"
path = "tests/detect_placeholders.rs"
[[test]]
name = "detect_square_oriented1"
path = "tests/detect_square_oriented1.rs"
[[test]]
name = "detect_square_oriented2"
path = "tests/detect_square_oriented2.rs"
[[test]]
name = "detect_square_oriented2_topological"
path = "tests/detect_square_oriented2_topological.rs"
[[test]]
name = "detect_square_positions"
path = "tests/detect_square_positions.rs"
[[bench]]
name = "detect_grid"
path = "benches/detect_grid.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
[lints.clippy]
too_many_arguments = "deny"