rustvision 0.1.1

Simple library for interacting with images, vertices, and polygons (and some other stuff related to computer vision).
Documentation
1
2
3
4
5
6
7
use rustvision::{load_image, save_pnm_p3};

fn main() {
    let image = load_image!("assets/mona_lisa_small.ppm");

    save_pnm_p3!("assets/mona_lisa_small_2.ppm", image);
}