pixelmap 0.1.0

Dense image correspondence by swarm-inspired iterative refinement of an affine correspondence grid (the PIXELMAP framework)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.80"
name = "pixelmap"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dense image correspondence by swarm-inspired iterative refinement of an affine correspondence grid (the PIXELMAP framework)"
homepage = "https://pixelmap.dogduck.com"
documentation = "https://docs.rs/pixelmap"
readme = "README.md"
keywords = [
    "computer-vision",
    "correspondence",
    "optical-flow",
    "registration",
    "stereo",
]
categories = [
    "computer-vision",
    "algorithms",
    "multimedia::images",
]
license = "MIT"
repository = "https://github.com/d4per/pixelmap"

[package.metadata.docs.rs]
all-features = true

[features]
bench = []
default = ["parallel"]
image = ["dep:image"]
parallel = ["dep:rayon"]

[lib]
name = "pixelmap"
path = "src/lib.rs"

[[example]]
name = "lookup"
path = "examples/lookup.rs"

[[example]]
name = "morph"
path = "examples/morph.rs"
required-features = ["image"]

[[test]]
name = "api"
path = "tests/api.rs"

[dependencies.image]
version = ">=0.25, <0.25.10"
optional = true
default-features = false

[dependencies.rayon]
version = "1.10"
optional = true