Building REST API service that performs image labelling
Article Source Introduction For this tutorial I will demonstrate how to use powerful Google API's for making some useful applications. This tutorial is divided into two parts: Part 1. Building WebAPI service that handles image labeling and translation into different languages. Part 2. Consuming this RESTful service from Android application. Using the code We will start by creating new WebAPI project. Start Visual Studio select: New project -> C# ->Web ->ASP.NET Web Application -Empty. Check WebAPI, and host in the cloud to be able to publish this project later. packages.config will contain all the libraries we need for this project. <?xml version="1.0" encoding="utf-8"?> <packages> <package id="BouncyCastle" version="1.7.0" targetFramework="net45" /> <package id="Google.Apis" version="1.19.0" targetFramework="net45" /> <p...