glint-mask-tools 0.1.1

Rust implementation of glint mask generation tools for UAV and aerial imagery
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Main entry point for the glint-mask command-line tool.
///
/// This binary provides a command-line interface for generating glint masks
/// from UAV and aerial imagery using various sensor configurations.
use glint_mask_tools::cli;
use std::process;

fn main() {
    match cli::run() {
        Ok(()) => {}
        Err(e) => {
            eprintln!("Error: {}", e);
            process::exit(1);
        }
    }
}