Thinking of Learning Power BI? Check Out My Top Learning Resources

Thinking of learning Power BI? There are plenty of great ways to learn Power BI and get Power BI training. Below is a list of my favorite resources. All are free, except the paid courses as mentioned at the end (no affiliation, but including these for completeness). 1. Guy in a Cube Guy in a Cube is a YouTube Channel by Microsoft employees Adam Saxton and Patrick LeBlanc: The guys do … Continue reading Thinking of Learning Power BI? Check Out My Top Learning Resources

Recognize Your Customers with Face Recognition, Cloud AI, and Dynamics 365

Artificial Intelligence has been influencing how we live for some time. And now more than ever, the tech giants have been competing to win businesses and developers with their AI services. Microsoft is one of these, and through it’s Azure cloud it has been democratizing the power of various AI capabilities for businesses and developers to take advantage of. In previous posts I have blogged about using voice recognition technology … Continue reading Recognize Your Customers with Face Recognition, Cloud AI, and Dynamics 365

Developing with Azure Cognitive Services Face API using C#

In this series, I will show how to use Microsoft’s Azure Cognitive Services Face API using C#. Signing up for a Microsoft Cognitive Services Subscription Key (Face) – Part 0 Building an Azure Cognitive Services Face App – Part 1 Face Recognition Building An Azure Cognitive Services Face App – Part 2 Attribute/Emotion Detection Building An Azure Cognitive Services Face App – Part 3 – People, Groups and Persisted Faces … Continue reading Developing with Azure Cognitive Services Face API using C#

Building An Azure Cognitive Services Face App – Part 4 – Verifying Faces and People

In our previous posts we did the following: Face Recognition Attribute/Emotion Detection People, Groups and Persisted Faces In this post we will look at verifying faces to people. Let’s do a few things first. We will add a new Image control to the form next to our original Image1 control. We will call this Image 2. We will move our TextBlock1 to the right. We will also add 2 buttons: … Continue reading Building An Azure Cognitive Services Face App – Part 4 – Verifying Faces and People

Building An Azure Cognitive Services Face App – Part 3 – People, Groups and Persisted Faces

Building on our previous posts, in this post we will show how people and groups functionality works, and how to persist faces to Microsoft Azure. In our WPF application, add a new button called Create Person: On pressing this button, we will do the following: We will create a new Person Group, called “My People Group”, using PersonGroup.CreateAsync. We will also set the GUID of this group We will create … Continue reading Building An Azure Cognitive Services Face App – Part 3 – People, Groups and Persisted Faces

Building An Azure Cognitive Services Face App – Part 2 Attribute/Emotion Detection

In our previous post, we created an app that recognizes faces in a given image. In this post, we will extend the app to detect face attributes such as the emotions of the person, their hair, makeup etc in the photo. The attributes returned from the service include: Age Blur Emotion Facial Hair Gender Glasses Hair Head Pose Makeup Noise Occlusion Smile Add a TextBlock: Add the face attributes to … Continue reading Building An Azure Cognitive Services Face App – Part 2 Attribute/Emotion Detection

Building an Azure Cognitive Services Face App – Part 1 Face Recognition

In this post we will go through an example of using Azure’s Cognitive Services Face Recognition functionality. This app will be built in C# and will take a given photo/image and upload it to Azure Cognitive Services, then determine what are faces within the image using DetectWithStreamAsync, and finally draw a rectangle around those faces. Let’s build the app. First you will need to sign up for an Azure Cognitive Services … Continue reading Building an Azure Cognitive Services Face App – Part 1 Face Recognition

Installing Dynamics 365 Report Authoring Extension

In this post we will install the Dynamics 365 Report Authoring Extension in SQL Server Data Tools 2015. First, download: https://www.microsoft.com/en-us/download/details.aspx?id=50375 This will download: Select one of the options: Click to Accept: Click Next: Click Next: Click Install: Click Finish: Now when you create a new BIDS project in Visual Studio, you will see the option:  

Signing up for a Dynamics 365 Trial

Dynamics 365 Trials are useful if you want to learn about the capabilities of Dynamics 365 before buying the application or if you want to test development features. To sign up for a Dynamics 365 Trial, go to https://trials.dynamics.com/: You will see the various Dynamics 365 apps available, including: Sales Customer Service Field Service Project Service Automation Finance and Operations Business Central Talent Retail Let’s install a Finance and Operations Trial. … Continue reading Signing up for a Dynamics 365 Trial

How to Use the Dynamics 365 Xrm.WebApi

In Dynamics 365 9.x, there are new Xrm.WebApi JavaScript methods available to call the Dynamics 365 Web APIs. These new methods are very useful in that the plumbing for making these calls is taken care of, so as a developer you can easily create, retrieve, update and delete etc in a few lines of code. Here we will go through examples of how to use the API. Create To create a … Continue reading How to Use the Dynamics 365 Xrm.WebApi