depth_analyzer 0.2.0

Program that analyzes an image processed by AI depth detection models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::env;

fn main() {

    let mut image_config = depth_analyzer::config::ImageConfig::new(&mut env::args());

    let mut sectors = depth_analyzer::DangerSectors::new();

    sectors.analyze(&mut image_config);

    println!("{}", sectors.get_instruction().to_string());
}