Introduction
In this article, you will learn how to consume Cognitive Services for recognizing a celebrity, using Xamarin.Android. I hope you will learn some amazing things in Xamarin using cognitive services.
Prerequisites
- You must have a subscription key for Computer Vision
- Microsoft.Net.Http
- Newtonsoft.Json
Computer Vision API keys
Computer Vision Services require special subscription keys. Every call to the Computer Vision API requires a subscription key that is needed to be either passed through a query string parameter or specified in the request header.
To sign up for subscription keys, see
Subscriptions. It's free to sign up. Pricing for these services is subject to change.
If you sign up using the Computer Vision free trial, your subscription keys are valid for the West-Central region
(https://westcentralus.api.cognitive.microsoft.com).
The steps given below are required to be followed in order to create a Celebrity Recognition app in Xamarin.Android, using Visual Studio.
Step 1 - Create an Android Project
Create your Android solution in Visual Studio or Xamarin Studio. Select Android and from the list, choose Android blank app. Give it a name, like RecognizeCelebrities.
(ProjectName: RecognizeCelebrities)
Step 2 - Add references of NuGet Packages
First of all, in References, add the reference to Microsoft.Net.Http and Newtonsoft.Json using NuGet Package Manager, as shown below.
Step 3 - Create User Interface
Open Solution Explorer-> Project Name-> Resources-> Layout-> Main.axml and add the following code. The layout will have an ImageView in order to display the preview of a celebrity's image. I also added a TextView to display the name of the celebrity.
(FileName: Main.axml)
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="10dp"
- android:orientation="vertical">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="8dp">
- <ImageView
- android:id="@+id/imgView"
- android:layout_width="350dp"
- android:layout_height="350dp" />
- <ProgressBar
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/progressBar"
- android:visibility="invisible" />
- <TextView
- android:id="@+id/txtDescription"
- android:text="Description:"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:textSize="25sp"
- android:textColor="#000000" />
- <Button
- android:id="@+id/btnAnalyze"
- android:text="Analyze"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
- </LinearLayout>
Step 4 - Create Analysis Model Class
Add a new class to your project with the name AnalysisModel.cs. Add the following properties to get the result set from JSON response with an appropriate namespace.
- using System.Collections.Generic;
-
- namespace RecognizeCelebrities
- {
- public class AnalysisModel
- {
- public IList<Category> categories { get; set; }
- public object adult { get; set; }
- public IList<Tag> tags { get; set; }
- public Description description { get; set; }
- public string requestId { get; set; }
- public Metadata metadata { get; set; }
- public IList<Face> faces { get; set; }
- public Color color { get; set; }
- public ImageType imageType { get; set; }
- }
- public class FaceRectangle
- {
- public int left { get; set; }
- public int top { get; set; }
- public int width { get; set; }
- public int height { get; set; }
- }
-
- public class Celebrity
- {
- public string name { get; set; }
- public FaceRectangle faceRectangle { get; set; }
- public double confidence { get; set; }
- }
-
- public class Detail
- {
- public IList<Celebrity> celebrities { get; set; }
- public object landmarks { get; set; }
- }
-
- public class Category
- {
- public string name { get; set; }
- public double score { get; set; }
- public Detail detail { get; set; }
- }
-
- public class Tag
- {
- public string name { get; set; }
- public double confidence { get; set; }
- }
-
- public class Caption
- {
- public string text { get; set; }
- public double confidence { get; set; }
- }
-
- public class Description
- {
- public IList<string> tags { get; set; }
- public IList<Caption> captions { get; set; }
- }
-
- public class Metadata
- {
- public int width { get; set; }
- public int height { get; set; }
- public string format { get; set; }
- }
-
- public class Face
- {
- public int age { get; set; }
- public string gender { get; set; }
- public FaceRectangle faceRectangle { get; set; }
- }
-
- public class Color
- {
- public string dominantColorForeground { get; set; }
- public string dominantColorBackground { get; set; }
- public IList<string> dominantColors { get; set; }
- public string accentColor { get; set; }
- public bool isBWImg { get; set; }
- }
-
- public class ImageType
- {
- public int clipArtType { get; set; }
- public int lineDrawingType { get; set; }
- }
- }
Step 5 - Backend Logic
Now, go to Solution Explorer-> Project Name-> MainActivity and add the following code with appropriate namespaces.
Note: Please replace your subscription key and your selected region address in the MainActivity class.
(FileName: MainActivity)
- using Android.App;
- using Android.Graphics;
- using Android.OS;
- using Android.Support.V7.App;
- using Android.Views;
- using Android.Widget;
- using Newtonsoft.Json;
- using System;
- using System.IO;
- using System.Net.Http;
- using System.Net.Http.Headers;
- using System.Threading.Tasks;
-
- namespace RecognizeCelebrities
- {
- [Activity(Label = "@string/app_name", Theme = "@style/AppTheme", MainLauncher = true)]
- public class MainActivity : AppCompatActivity
- {
- const string subscriptionKey = "3407ad614**********4ebf0dc26d";
- const string uriBase = "https://westcentralus.api.cognitive.microsoft.com/vision/v2.0/analyze";
- Bitmap mBitmap;
- private ImageView imageView;
- private ProgressBar progressBar;
- ByteArrayContent content;
- private TextView textView;
- Button btnAnalyze;
- protected override void OnCreate(Bundle savedInstanceState)
- {
- base.OnCreate(savedInstanceState);
-
-
- SetContentView(Resource.Layout.activity_main);
-
- mBitmap = BitmapFactory.DecodeResource(Resources, Resource.Drawable.dblbig);
- imageView = FindViewById<ImageView>(Resource.Id.imgView);
- imageView.SetImageBitmap(mBitmap);
- textView = FindViewById<TextView>(Resource.Id.txtDescription);
- progressBar = FindViewById<ProgressBar>(Resource.Id.progressBar);
- btnAnalyze = FindViewById<Button>(Resource.Id.btnAnalyze);
- byte[] bitmapData;
- using (var stream = new MemoryStream())
- {
- mBitmap.Compress(Bitmap.CompressFormat.Jpeg, 100, stream);
- bitmapData = stream.ToArray();
- }
- content = new ByteArrayContent(bitmapData);
-
- btnAnalyze.Click += async delegate
- {
- busy();
- await MakeAnalysisRequest(content);
- };
- }
- public async Task MakeAnalysisRequest(ByteArrayContent content)
- {
- try
- {
- HttpClient client = new HttpClient();
-
- client.DefaultRequestHeaders.Add(
- "Ocp-Apim-Subscription-Key", subscriptionKey);
- string requestParameters =
- "visualFeatures=Categories&details=Celebrities";
-
- string uri = uriBase + "?" + requestParameters;
- content.Headers.ContentType =
- new MediaTypeHeaderValue("application/octet-stream");
-
- var response = await client.PostAsync(uri, content);
-
- string contentString = await response.Content.ReadAsStringAsync();
- var analysesResult = JsonConvert.DeserializeObject<AnalysisModel>(contentString);
- NotBusy();
- textView.Text = "Name: " + analysesResult.categories[0].detail.celebrities[0].name.ToString();
- }
- catch (Exception e)
- {
- Toast.MakeText(this, "" + e.ToString(), ToastLength.Short).Show();
- }
- }
-
- void busy()
- {
- progressBar.Visibility = ViewStates.Visible;
- btnAnalyze.Enabled = false;
- }
-
- void NotBusy()
- {
- progressBar.Visibility = ViewStates.Invisible;
- btnAnalyze.Enabled = true;
- }
- }
- }
Results of recognizing the celebrities