<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Face Identify &#8211; Sibeesh Passion</title>
	<atom:link href="https://sibeeshpassion.com/tag/face-identify/feed/" rel="self" type="application/rss+xml" />
	<link>https://sibeeshpassion.com</link>
	<description>My passion towards life</description>
	<lastBuildDate>Wed, 12 Jun 2019 17:44:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2017/04/Sibeesh_Passion_Logo_Small.png</url>
	<title>Face Identify &#8211; Sibeesh Passion</title>
	<link>https://sibeeshpassion.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Create a Microsoft Azure Cognitive Service FaceAPI Application in Half an Hour</title>
		<link>https://sibeeshpassion.com/create-a-microsoft-azure-cognitive-service-faceapi-application-in-half-an-hour/</link>
					<comments>https://sibeeshpassion.com/create-a-microsoft-azure-cognitive-service-faceapi-application-in-half-an-hour/#disqus_thread</comments>
		
		<dc:creator><![CDATA[SibeeshVenu]]></dc:creator>
		<pubDate>Wed, 12 Jul 2017 00:00:04 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[CodeProject]]></category>
		<category><![CDATA[Cognitive Service]]></category>
		<category><![CDATA[Face Comparison Using FaceAPI]]></category>
		<category><![CDATA[Face Identify]]></category>
		<category><![CDATA[FaceAPI]]></category>
		<category><![CDATA[Microsoft]]></category>
		<guid isPermaLink="false">http://sibeecst_passion.com/?p=12471</guid>

					<description><![CDATA[[toc] Introduction In this article, we are going to create Microsoft Azure Cognitive Service Face API in half an hour. Microsoft Azure Cognitive Services are set of APIs and Services available for the developers to make their applications more interactive and intelligent. This was formerly known as Project Oxford. Here Microsoft uses Machine Learning in the background to create these APIs. So far we have the preceding list of APIs. Emotion and video detection Facial Recognition Speech Recognition Vision Recognition Speech and language understanding Prerequisites Azure Subscription Visual Studio If you don&#8217;t have any Azure subscription, please sign up for [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>[toc]</p>



<h3 class="wp-block-heading">Introduction</h3>



<p>In this article, we are going to create Microsoft Azure Cognitive Service Face API in half an hour. Microsoft Azure Cognitive Services are set of APIs and Services available for the developers to make their applications more interactive and intelligent. This was formerly known as Project Oxford. Here Microsoft uses Machine Learning in the background to create these APIs. So far we have the preceding list of APIs.</p>



<ul class="wp-block-list"><li>Emotion and video detection</li><li>Facial Recognition</li><li>Speech Recognition</li><li>Vision Recognition</li><li>Speech and language understanding</li></ul>



<h3 class="wp-block-heading">Prerequisites</h3>



<ul class="wp-block-list"><li>Azure Subscription</li><li>Visual Studio</li></ul>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>If you don&#8217;t have any Azure subscription, please sign up for a subscription <a href="https://azure.microsoft.com/en-in/pricing/member-offers/msdn-benefits-details/" target="_blank" rel="noopener noreferrer">here</a>.</p></blockquote>



<h3 class="wp-block-heading">Download the source code</h3>



<p>You can always download the source code used for this video from here</p>



<ul class="wp-block-list"><li><a href="https://code.msdn.microsoft.com/Create-a-Azure-Cognitive-291065b2" target="_blank" rel="noopener noreferrer">AzureCognitiveServicesFaceAPI</a></li></ul>



<h3 class="wp-block-heading">Create the Face API in <a href="http://sibeeshpassion.com/category/azure/" target="_blank" rel="noopener noreferrer">Azure </a>portal</h3>



<p>To know how to create a Face Recognition API in Azure portal, please see the video preceding.</p>



<p><iframe width="1200" height="675" src="https://www.youtube.com/embed/qYi91SC19iE?feature=oembed" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe></p>



<h3 class="wp-block-heading">Add reference of Microsoft.ProjectOxford.Face to your project</h3>



<p>Before we start coding, please make sure that you add the reference of <em>Microsoft.ProjectOxford.Face</em> from NuGet package manager.</p>



<figure class="wp-block-image alignnone"><a href="http://sibeeshpassion.com/wp-content/uploads/2017/07/Microsoft.ProjectOxford.Face_-e1499879129697.png"><img decoding="async" src="http://sibeeshpassion.com/wp-content/uploads/2017/07/Microsoft.ProjectOxford.Face_-e1499879129697.png" alt="Microsoft.ProjectOxford.Face" class="wp-image-12484"/></a><figcaption>Microsoft.ProjectOxford.Face</figcaption></figure>



<h3 class="wp-block-heading">Using the code</h3>



<p>To get started, open your <a href="http://sibeeshpassion.com/category/tools/visual-studio/" target="_blank" rel="noopener noreferrer">Visual Studio</a> and create a new WPF application.</p>



<h4 class="wp-block-heading">Add Image and button control to MainWindow.xaml</h4>



<p>&lt;button>&lt;/button></p>



<h4 class="wp-block-heading">Create an instance of IFaceServiceClient</h4>



<script src="https://gist.github.com/SibeeshVenu/63fb2a6f593173fc5cef6a1b3a879c98.js"></script>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>If you are selecting the location as Southeast Asia while creating the Face API in portal, it is mandatory to use the second parameter, that is, your end point.</p></blockquote>



<h4 class="wp-block-heading">Load the image to image control</h4>



<script src="https://gist.github.com/SibeeshVenu/2129b1dbc7c2dd1ed2ea0a30e412f81c.js"></script>



<h4 class="wp-block-heading">Detect the faces count</h4>



<script src="https://gist.github.com/SibeeshVenu/7b5eab9e1894b163ff096548a5cb4b23.js"></script>



<h4 class="wp-block-heading">Draw the rectangles in faces found</h4>



<script src="https://gist.github.com/SibeeshVenu/ed0d2bd327f7ac7cee29f57447d08d29.js"></script>



<h3 class="wp-block-heading">Output</h3>



<p>Now run your application and upload an image, it can be a single picture or a group picture.</p>



<figure class="wp-block-image alignnone"><a href="http://sibeeshpassion.com/wp-content/uploads/2017/07/Azure-Face-Recognition-API-Output-e1499878818343.png"><img decoding="async" src="http://sibeeshpassion.com/wp-content/uploads/2017/07/Azure-Face-Recognition-API-Output-e1499878818343.png" alt="Azure Face Recognition API Output" class="wp-image-12483"/></a><figcaption>Azure Face Recognition API Output</figcaption></figure>



<h3 class="wp-block-heading">Check the statistics in Azure portal</h3>



<p>If everything goes fine, you will be able to see the statistics in your Azure portal as preceding.</p>



<figure class="wp-block-image alignnone"><a href="http://sibeeshpassion.com/wp-content/uploads/2017/07/Face-API-Metric-In-Azure-Portal-e1499878282399.png"><img decoding="async" src="http://sibeeshpassion.com/wp-content/uploads/2017/07/Face-API-Metric-In-Azure-Portal-e1499878282399.png" alt="Face API Metric In Azure Portal" class="wp-image-12482"/></a><figcaption>Face API Metric In Azure Portal</figcaption></figure>



<h3 class="wp-block-heading">To Do</h3>



<p>If you would like to compare the images or identify the person in an image, please read the documentation here <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/face/face-api-how-to-topics/howtoidentifyfacesinimage" target="_blank" rel="noopener noreferrer">Face identifying and comparing with Azure Face API</a></p>



<h3 class="wp-block-heading">Conclusion</h3>



<p>Did I miss anything that you may think which is needed? Could you find this post as useful? I hope you liked this article. Please share me your valuable suggestions and feedback.</p>



<h3 class="wp-block-heading">Your turn. What do you think?</h3>



<p>A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, Asp.Net Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.</p>



<p>Kindest Regards<br>Sibeesh Venu</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sibeeshpassion.com/create-a-microsoft-azure-cognitive-service-faceapi-application-in-half-an-hour/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
