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:
- Download and open project in XCode
- Visit cloud.google.com and create an API Key which allows access to google vision
- Create the a file called "Constants.swift" under the "Model" folder
- 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)"
- Run the app