1 unstable release
new 0.1.0 | Nov 27, 2024 |
---|
#218 in Robotics
40 downloads per month
8KB
112 lines
sqpnp_simple
A pure rust implementation of SQPnP. It's a simplified version. Here's the original c++ implementation.
Usage
use sqpnp_simple::sqpnp_solve;
// p3ds: &[(f64, f64, f64)] 3D points (x, y, z)
// p2ds: &[(f64, f64)] 2D undistorted image points on z=1 plane
let (rvec, tvec) = sqpnp_solve(&p3ds, &p2ds).unwrap();
Example
cargo run -r --example random_points
Reference
@inproceedings{terzakis2020SQPnP,
title={A Consistently Fast and Globally Optimal Solution to the Perspective-n-Point Problem},
author={George Terzakis and Manolis Lourakis},
booktitle={European Conference on Computer Vision},
pages={478--494},
year={2020},
publisher={Springer International Publishing}
}
Dependencies
~6.5MB
~176K SLoC