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 ```
```rust use dlt::{dlt_corresponding, CorrespondingPoint};
let points: Vec
let pmat = dlt_corresponding(&points, 1e-10).unwrap();
// could now call cam_geom::Camera::from_perspective_matrix(&pmat)
```
You may also be interested in:
cam-geom
- Rust crate with 3D
camera models which can use the calibration data from DLT.dlt-examples
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: