Skip to content

azazdeaz/homography

Repository files navigation

Homography

Rust reimplementation of OpenCV's homography estimation algorithm.

Install

[dependencies]
homography = { git = "https://github.com/azazdeaz/homography" }

Demos

  • Find homography between to images:

cargo run --release --example from_images -- --image1 ./test-data/image1.png --image2 ./test-data/image2.png

  • Fun little demo app:

cargo run --release --bin demo (add --features opencv enable opencv-rust and see the resutls with OpenCV's findHomography() as well)

demo.mp4