visual-search 0.1.0

Visual search engine for images using Deep Learning models to extract features
Documentation
1
2
3
4
5
use image::RgbImage;

pub fn read_rgb_image(image_path: &str) -> RgbImage {
    image::open(image_path).unwrap().to_rgb8()
}