/Scrive

An image captioning IOS App. Uses GoogleVision to label images, and select captions from a large library.

Primary LanguageSwift

Scrive

An image captioning IOS App. Uses GoogleVision to label images, and select captions from a large library.

This app uses the Google Cloud Vision API to tag each image. To properly setup the project, make sure you have an active, billable google cloud account.

Setup:

  1. Download and open project in XCode
  2. Visit cloud.google.com and create an API Key which allows access to google vision
  3. Create the a file called "Constants.swift" under the "Model" folder
  4. Place the following code inside this file:
let API_KEY = "YOUR GOOGLE CLOUD API KEY"
let API_URL = "https://vision.googleapis.com/v1/images:annotate?key=\(API_KEY)"
  1. Run the app