inlier 0.1.0

Robust model fitting primitives for RANSAC-based pipelines in Rust.
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 = "2024"
name = "inlier"
version = "0.1.0"
authors = ["Tin Lai <tin@tinyiu.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Robust model fitting primitives for RANSAC-based pipelines in Rust."
homepage = "https://github.com/soraxas/inlier"
readme = "README.md"
keywords = [
    "ransac",
    "computer-vision",
    "geometry",
    "estimation",
    "robust",
]
categories = [
    "algorithms",
    "computer-vision",
    "mathematics",
    "science",
]
license = "MIT"
repository = "https://github.com/soraxas/inlier"

[features]
default = ["rayon"]
kornia-pnp = []
rayon = ["argmin/rayon"]

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

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

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

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

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

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

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

[dependencies.argmin]
version = "0.11.0"

[dependencies.float-ord]
version = "0.3.2"

[dependencies.kornia-pnp]
version = "0.1.10"

[dependencies.nalgebra]
version = "0.33"
features = ["std"]

[dependencies.ordered-float]
version = "5.1.0"

[dependencies.rand]
version = "0.9.2"

[dependencies.usearch]
version = "2.21.4"

[dev-dependencies.plotters]
version = "0.3"