dlt
for the Rust languageDLT (direct linear transform) algorithm for camera calibration
This is typically used for calibrating cameras and requires a minimum of 6 corresponding pairs of 2D and 3D locations.
To run the unit tests:
cargo test
no_std
Since the thumbv7em-none-eabihf
target does not have std
available, we
can build for it to check that our crate does not inadvertently pull in std.
The unit tests require std, so cannot be run on a no_std
platform. The
following will fail if a std dependency is present:
```
cargo build --no-default-features --target thumbv7em-none-eabihf ```
Currently, this crate does not build without std, but this is a bug that will be fixed.
```rust use dlt::{dltcorresponding, CorrespondingPoint}; use camgeom::{Camera, Points};
let points: Vec
let pmat = dltcorresponding(&points, 1e-10).unwrap(); let cam = Camera::fromperspectivematrix(&pmat).unwrap(); for orig in points.iter() { let world = Points::new(nalgebra::RowVector3::fromrowslice(&orig.objectpoint)); let px = cam.worldtopixel(&world); approx::assertrelativeeq!(px.data.asslice(), &orig.imagepoint[..], epsilon = 1e-4); } ```
You may also be interested in:
cam-geom
- Rust crate with 3D
camera models which can use the calibration data from DLT.README.md
The README.md
file can be regenerated with:
text
cargo readme > README.md
Anyone who interacts with this software in any space, including but not limited to this GitHub repository, must follow our code of conduct.
Licensed under either of these: