calib-targets 0.7.2

Main entry point crate for a collection of plain calibration target detectors built on top of ChESS corners
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `list-dictionaries` — print the built-in ArUco dictionary names, one per line.

use calib_targets_aruco::builtins::BUILTIN_DICTIONARY_NAMES;

use super::error::CliError;

pub fn run() -> Result<(), CliError> {
    for name in BUILTIN_DICTIONARY_NAMES {
        println!("{name}");
    }
    Ok(())
}