# Imsearch Extensible library for creating an image based search engine. The library exposes the functionality to create databases which index various images stored as png files. Files can be compared for similarity by either premade features or custom ones. The basic idea of handling the library is as follows: - Create a new database - Add some features to the database - Add some images to the database - Search for some images in the database by a certain feature - Save the database to disk or: - Load a database form disk - Supply generator functions - Search for some images in the database by a certain feature - Add some images to the database - Save the database to disk # Examples: ## Define a new feature ```rust /// Compute the average value of the tree color channels of a given image fn average_rgb_value(image: Arc>) -> (String, FeatureResult) { let bright = image .pixels() .iter() .map(|(r, g, b, _)| (r + g + b) / 3.0 / 255.0) .sum::(); ( String::from("average_brightness"), FeatureResult::Percent(bright / image.pixels().len() as f32), ) } ``` ## Create a new database ```rust let files: Vec = std::fs::read_dir("image/folder/") .unwrap() .map(|f| f.unwrap().path()) .collect(); let feats: Vec = vec![average_rgb_value]; let db = Database::new(&files, feats).unwrap(); db.write_to_file(json); ``` ## Read a new database and search for similar images ```rust let db = Database::from_file(Path::new("db.json")); for results in db .search( std::path::Path::new("path/to/image.png"), average_brightness, ) .unwrap() { println!( "path: {} similarity: {}", results.0.as_os_str().to_str().unwrap(), results.1 ); } ``` # Details Processing of features for images are multithreaded. Features that are calculated for images only get their results stored. The generator function used to calculate won't get serialized. This implies that in order to compute the features for images the generator functions have to be passed to the database after it has been read from a file. ## Limiting thread usage You can limit the number of threads to be used by calling `set_limit()` on the database. Note that the thread pool will automatically try to detect the optimal number of threads to use. As long as no edge case such as running in an over committed virtual machine applies this will be good enough for most cases. ## Image formats The library can only handle png files through the `png` crate. Note that not all colortypes are supported. Due to the poor capabilites of the crate pngs with indexed palettes are not functional will cause functions to return error values. ## Memory usage The database won't hold all images in ram at the same time. They are loaded on demand when calculating features for them. This may cause increased disk usage but will prevent ram overcommitment. Benchmark results for system with 12 threads (i5-10400) can be found here: [Benchmarks](https://cloud.montehaselino.de/s/53d4tfpAjeYgysS) If you encounter issues with this link contact admin@teridax.de