PreviousNext

Exploring the City of Amsterdam with Azure Durable Functions and the Custom Vision Service

by dnwu3413, 2018-08-27T07:02:53.515Z

Microsoft released Azure Durable Functions in 2017. This new feature gives the ability to write long running stateful function orchestrations. I developed a prototype that includes a tourist and admin application. Tourists can take a photo from a building in the city and upload it. The Custom Vision service analyzes the photographed image and detects the correct building. The outcome is sent to the Entity Search service in order to provide the tourist with some basic information about the building that they just photographed. Subsequently, they can start a wizard which presents them with a couple of questions. The outcome of the wizard will help them explore the rest of the city. The wizard is created with Azure Durable Functions. The admin application is responsible for training the machine learning model that analyzes the image that is uploaded. In this application, admins can upload images from buildings and connect them to the correct tag. To eventually train the Custom Vision model. These steps will improve the model so that accurate results are returned for photos that are uploaded by tourists.

Read More