image_sieve 0.4.2

GUI based tool to sort out and categorize images with the help of image similarity classification
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate winres;

fn main() {
    println!("sixtyfps build");
    sixtyfps_build::compile("ui/image_sieve.60").unwrap();
    if cfg!(target_os = "windows") {
        let mut res = winres::WindowsResource::new();
        res.set_icon("ImageSieve.ico");
        res.compile().unwrap();
    }
}