[package]
name = "doc-quad"
version = "0.1.1"
edition = "2024"
description = "A high-performance document detection library in pure Rust."
authors = ["Paul Zhang"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paulzhang5511/doc-quad"
repository = "https://github.com/paulzhang5511/doc-quad"
documentation = "https://docs.rs/doc-quad"
categories = ["graphics"]
keywords = [
"document",
"detection",
"edge-detection",
"quadrilateral",
"computer-vision",
]
readme = "README.md"
[dependencies]
bytemuck = { version = "1.14", features = ["derive"] }
ndarray = "0.15"
fast-canny = "0.1"
glam = "0.24"
geo-types = "0.7"
geo = "0.27"
thiserror = "1.0"
log = "0.4"
[dev-dependencies]
image = "0.25"
env_logger = "0.11"
[[example]]
name = "pc_demo"
path = "examples/pc_demo.rs"
[[example]]
name = "detect_image"
path = "examples/detect_image.rs"