Run a corpus of images through multiple computer vision API vendors. View image labeing results side by side so that you can get a general feel for how well each vendor works for your use case. Supported vendors: Microsoft, IBM, Google, Cloudsight, Amazon (Rekognition) and Clarifai.
Read this blog post for details.
- For a given directory of images, and list of vendors:
- Call each vendor API for that image (or skip it if cached), e.g. call Google for dog_at_the_park.jpg.
- Store results in a JSON file with the name: filename.vendor.json, e.g. dog_at_the_park.jpg.google.json.
- Optionally match the tags returned with your desired tags to test accuracy.
- Calculate stats around response times, number of tags returned, etc.
- Create a scaled copy of the original image with height 200px.
- Generate output.html to show all the images and labeling results in an easy to consume manner.
- Get keys for each vendor, and put them in a file called api_keys.json (copy example_api_keys.json to get started).
- Install dependencies (see below).
- Place all your images in
./input_images
. - Run the script:
python cloudy_vision.py
- View
./output/output.html
to see results. - If you add more images, simply re-run the script. Prior results are cached.
The keys should not be placed in the api_keys.json file but in ~/.aws/credentials and ~/.aws/config. See http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-config-files
The keys should not be placed in the api_keys.json file but in ~/.clarifai/config. See https://github.com/Clarifai/clarifai-python#setup
You can specify tags that you hope to get, and see whether results from each vendor match. We'll compute these additional stats:
- matching_tags_count (average and standard deviation): number of api tags matching the image tags
- matching confidence (average and standard deviation): confidence of the matching tags
To work with tagged images, set the tagged_images
setting to True and fill a tags.json file (copy example_tags.json to get started; this file contains a map image_filename => tags
).
Install these dependencies:
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
Note that installing Pillow can be dropped if you set settings['resize']=False.
If you make modifications that may help others, please fork and send me a pull request. Some ideas for contributions: (a) add new image recognition vendors, (b) expose more attributes per vendor, e.g. face detection, (c) bugs, requests, feedback.
Authored by @goberoi.
Thanks to @lucasdchamps for several features: response time stats; matching with desired tags; Amazon Rekognition; and several other improvements.
MIT License - Copyright (c) 2016 Gaurav Oberoi.