Getting Started with AWS CodeStar

by 

|

in

I have blogged a bit about AWS Lambdas in the past. We sometimes use AWS Lambas + API Gateway + other AWS services to create the backend services for our applications. My previous experience with getting this set up and running was kind of a pain, and getting it running locally was even more of…

Read more…

Chad’s Identify-Your-Face-inator

by 

|

in

There are many solutions for face recognition. Azure and AWS both provide cloud-based solutions that can be consumed. However, there are other options that don’t require a cloud provider. One of these is OpenCV. In this blog post, we will explore using OpenCV to do some basic face recognition. The steps for pretty much all…

Read more…

Computer-Assisted Static Code Analysis

by 

|

in

Ensuring everyone has the same conventions is important; it helps to keep all the code looking like it was developed with one mind. But doing so is a lot of work. I don’t know how many pull request comments I have seen along the lines of “this should be Pascal Case, not Camel Case”. Way…

Read more…

Image of Diet Pepsi can and accompanying analysis

Azure Computer Vision: Moving Beyond Faces

by 

|

in

Azure’s cognitive APIs are pretty impressive. We did a series of blog posts on the Azure Faces API, but today we are going to look at the Computer Vision API overall. And we’ll see that their APIs are good for doing other things with images as well. With Azure’s generic Vision API, we can glean…

Read more…

Introducing the Don’t Panic Labs Advanced Continuing Education Program

by 

|

in ,

Businesses across the country have adjusted to the realities of our current environment. Don’t Panic Labs is no exception. While our professional services business made adjustments to remote work rather quickly, continuing our Software Design and Development Clinics required some additional thought and effort. These classes were designed around in-person settings, so their structure needed…

Read more…

Quickly Finding Sentiment Using Azure Text Analytics

by 

|

in

Text analysis can potentially be very powerful. The ability to judge text as positive or negative is very interesting. This would obviously be a very powerful tool for analyzing things such as blog comments or product review comments (“Are people giving us positive or negative feedback on our product?”). So lucky for us, Text Analytics…

Read more…

Azure Face, Part 4: Is Doug Happy?

by 

|

in

When looking at a photo, we can often tell how happy a person is, or you can at least make a good guess. But determining if a person is happy based on facial expressions is no longer just for humans. Azure’s Face API also supports letting Azure make that guess. Let’s dive in and see…

Read more…

Azure Face, Part 3: Doug vs Bill

by 

|

in

In my previous post, we wrote some code to determine if we had Doug in an image. But we were not comparing Doug against anyone else. Now it’s time to make a small tweak to train the system to recognize Doug when we give it an image of someone else – like Bill. The code…

Read more…

Azure Face, Part 2: Is Doug, Doug?

by 

|

in

Azure’s Face API is pretty amazing. In my previous blog post, we saw that Face can identify a human face in any image we feed it. In this blog post, we will find Doug’s in a picture. We won’t test this very extensively here; we are going to start with a pretty simple example. The…

Read more…

Azure Face, Part 1

by 

|

in

Azure is pretty amazing. It has services for almost everything. And did you know that Azure even has the ability to recognize faces? Azure Face is a pretty fantastic facial recognition service. Ten years ago, it would have seemed almost magical. But today, you can recognize faces in images using a cloud service with very…

Read more…