[package]
edition = "2021"
rust-version = "1.88"
name = "chess-corners"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-level chessboard / ChESS corner detection API"
homepage = "https://vitalyvorobyev.github.io/chess-corners-rs"
documentation = "https://vitalyvorobyev.github.io/chess-corners-rs/api/chess_corners"
readme = "README.md"
keywords = [
"chessboard",
"chess-corners",
"corner-detection",
"computer-vision",
"image-processing",
]
license = "MIT"
repository = "https://github.com/VitalyVorobyev/chess-corners-rs"
[features]
cli = [
"dep:clap",
"dep:anyhow",
"dep:serde_json",
"dep:tracing-subscriber",
]
default = ["image"]
image = ["dep:image"]
ml-refiner = ["dep:chess-corners-ml"]
par_pyramid = ["box-image-pyramid/par_pyramid"]
rayon = [
"chess-corners-core/rayon",
"dep:rayon",
"box-image-pyramid/rayon",
]
simd = [
"chess-corners-core/simd",
"box-image-pyramid/simd",
]
tracing = [
"chess-corners-core/tracing",
"dep:tracing",
"box-image-pyramid/tracing",
]
[lib]
name = "chess_corners"
path = "src/lib.rs"
[[bin]]
name = "chess-corners"
path = "bin/main.rs"
required-features = [
"image",
"cli",
]
[[example]]
name = "bench_sweep"
path = "examples/bench_sweep.rs"
required-features = []
[[example]]
name = "multiscale_image"
path = "examples/multiscale_image.rs"
required-features = ["image"]
[[example]]
name = "profile_target"
path = "examples/profile_target.rs"
required-features = ["image"]
[[example]]
name = "single_scale_image"
path = "examples/single_scale_image.rs"
required-features = ["image"]
[[test]]
name = "perf_accuracy_guard"
path = "tests/perf_accuracy_guard.rs"
[[test]]
name = "radon_pipeline"
path = "tests/radon_pipeline.rs"
[[test]]
name = "refiner_benchmark"
path = "tests/refiner_benchmark.rs"
[[test]]
name = "upscale_pipeline"
path = "tests/upscale_pipeline.rs"
[[bench]]
name = "chess_pipeline"
path = "benches/chess_pipeline.rs"
harness = false
required-features = []
[[bench]]
name = "radon_pipeline"
path = "benches/radon_pipeline.rs"
harness = false
required-features = []
[[bench]]
name = "upscale"
path = "benches/upscale.rs"
harness = false
required-features = []
[dependencies.anyhow]
version = "1"
optional = true
[dependencies.box-image-pyramid]
version = "0.8.0"
[dependencies.chess-corners-core]
version = "0.8.0"
[dependencies.chess-corners-ml]
version = "0.8.0"
optional = true
[dependencies.clap]
version = "4.6"
features = ["derive"]
optional = true
[dependencies.image]
version = "0.25"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.rayon]
version = "1"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
optional = true
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.image]
version = "0.25"
[dev-dependencies.serde_json]
version = "1"