Skip to content

Commit d66f554

Browse files
Merge pull request #88723 from PatrickFarley/visual-alert
[cog serv] Visual alert
2 parents 5aadc39 + 6b3a63c commit d66f554

File tree

6 files changed

+148
-1
lines changed

6 files changed

+148
-1
lines changed

articles/cognitive-services/Custom-Vision-Service/includes/clean-ic-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ If you wish to implement your own image classification project (or try an [objec
1313

1414
On the [Custom Vision website](https://customvision.ai), navigate to **Projects** and select the trash can under My New Project.
1515

16-
![Screenshot of a panel labelled My New Project with a trash can icon](../media/csharp-tutorial/delete_project.png)
16+
![Screenshot of a panel labeled My New Project with a trash can icon](../media/csharp-tutorial/delete_project.png)

articles/cognitive-services/Custom-Vision-Service/index.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ landingContent:
9797
url: export-model-python.md
9898
- linkListType: tutorial
9999
links:
100+
- text: IoT Visual Alerts app
101+
url: iot-visual-alerts-tutorial.md
100102
- text: Logo detector for mobile
101103
url: logo-detector-mobile.md
102104

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
---
2+
title: "Tutorial: IoT Visual Alerts sample"
3+
titleSuffix: "Azure Cognitive Services"
4+
description: In this tutorial, ...
5+
services: cognitive-services
6+
author: PatrickFarley
7+
manager: nitinme
8+
9+
ms.service: cognitive-services
10+
ms.subservice: computer-vision
11+
ms.topic: tutorial
12+
ms.date: 09/11/2019
13+
ms.author: pafarley
14+
---
15+
16+
# Tutorial: IoT Visual Alerts sample
17+
18+
This sample app illustrates how to use Azure Custom Vision to train a device with a camera to detect visual states. You can run this detection scenario on an IoT device by using an ONNX model exported from the Custom Vision service.
19+
20+
A visual state describes the content of an image: an empty room or a room with people, an empty driveway or a driveway with a truck, and so on. In the image below, you can see the app detect when a banana or an apple is placed in front of the camera.
21+
22+
![Animation of a UI labeling fruit in front of the camera](./media/iot-visual-alerts-tutorial/scoring.gif)
23+
24+
This tutorial will show you how to:
25+
> [!div class="checklist"]
26+
> * Configure the sample app to use your own Custom Vision and IoT Hub resources.
27+
> * Use the app to train your Custom Vision project.
28+
> * Use the app to score new images in real time and send the results to Azure.
29+
30+
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/) before you begin.
31+
32+
## Prerequisites
33+
34+
* [!INCLUDE [create-resources](includes/create-resources.md)]
35+
> [!IMPORTANT]
36+
> This project needs to be a **Compact** image classification project, because we will be exporting the model to ONNX later.
37+
* You'll also need to [create an IoT Hub resource](https://ms.portal.azure.com/#create/Microsoft.IotHub) on Azure.
38+
* [Visual Studio 2015 or later](https://www.visualstudio.com/downloads/)
39+
* Optionally, an IoT device running Windows 10 IoT Core version 17763 or higher. You can also run the app directly from your PC.
40+
* For Raspberry Pi 2 and 3, you can set up Windows 10 directly from the IoT Dashboard app. For other devices such as DrangonBoard, you'll need to flash it using the [eMMC method](https://docs.microsoft.com/windows/iot-core/tutorials/quickstarter/devicesetup#flashing-with-emmc-for-dragonboard-410c-other-qualcomm-devices). If you need help setting up a new device, see [Setting up your device](https://docs.microsoft.com/windows/iot-core/tutorials/quickstarter/devicesetup) in the Windows IoT documentation.
41+
42+
## About the Visual Alerts app
43+
44+
The IoT Visual Alerts app runs in a continuous loop, switching between four different states as appropriate:
45+
46+
* **No Model**: A no-op state. The app will continually sleep for one second and check the camera.
47+
* **Capturing Training Images**: In this state, the app captures a picture and uploads it as a training image to the target Custom Vision project. The app then sleeps for 500 ms and repeats the operation until the set target number of images are captured. Then it triggers the training of the Custom Vision model.
48+
* **Waiting For Trained Model**: In this state, the app calls the Custom Vision API every second to check whether the target project contains a trained iteration. When it finds one, it downloads the corresponding ONNX model to a local file and switches to the **Scoring** state.
49+
* **Scoring**: In this state, the app uses Windows ML to evaluate a single frame from the camera against the local ONNX model. The resulting image classification is displayed on the screen and sent as a message to the IoT Hub. The app then sleeps for one second before scoring a new image.
50+
51+
## Understand the code structure
52+
53+
The following files handle the main functionality of the app.
54+
55+
| File | Description |
56+
|-------------|-------------|
57+
| [MainPage.xaml](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/blob/master/IoTVisualAlerts/MainPage.xaml) | This file defines the XAML user interface. It hosts the web camera control and contains the labels used for status updates.|
58+
| [MainPage.xaml.cs](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/blob/master/IoTVisualAlerts/MainPage.xaml.cs) | This code controls the behavior of the XAML UI. It contains the state machine processing code.|
59+
| [CustomVision\CustomVisionServiceWrapper.cs](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/blob/master/IoTVisualAlerts/CustomVision/CustomVisionServiceWrapper.cs) | This class is a wrapper that handles integration with the Custom Vision Service.|
60+
| [CustomVision\CustomVisionONNXModel.cs](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/blob/master/IoTVisualAlerts/CustomVision/CustomVisionONNXModel.cs) | This class is a wrapper that handles integration with Windows ML for loading the ONNX model and scoring images against it.|
61+
| [IoTHub\IotHubWrapper.cs](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/blob/master/IoTVisualAlerts/IoTHub/IotHubWrapper.cs) | This class is a wrapper that handles integration with IoT Hub for uploading scoring results to Azure.|
62+
63+
## Set up the Visual Alerts app
64+
65+
Follow these steps to get the IoT Visual Alerts app running on your PC or IoT device.
66+
67+
1. Clone or download the [IoTVisualAlerts sample](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/tree/master/IoTVisualAlerts) on GitHub.
68+
1. Open the solution _IoTVisualAlerts.sln_ in Visual Studio
69+
1. Integrate your Custom Vision project:
70+
1. In the _CustomVision\CustomVisionServiceWrapper.cs_ script, update the `ApiKey` variable with your training key.
71+
1. Then update the `Endpoint` variable with the endpoint URL associated with your key.
72+
1. Update the `targetCVSProjectGuid` variable with the corresponding ID of the Custom Vision project that you want to use.
73+
1. Set up the IoT Hub resource:
74+
1. In the _IoTHub\IotHubWrapper.cs_ script, update the `s_connectionString` variable with the proper connection string for your device.
75+
1. On the Azure portal, load your IoT Hub instance, click on **IoT devices** under **Explorers**, select on your target device (or create one if needed), and find the connection string under **Primary Connection String**. The string will contain your IoT Hub name, device ID, and shared access key; it has the following format: `{your iot hub name}.azure-devices.net;DeviceId={your device id};SharedAccessKey={your access key}`.
76+
77+
## Run the app
78+
79+
If you're running the app on your PC, select **Local Machine** for the target device in Visual Studio, and select **x64** or **x86** for the target platform. Then press F5 to run the program. The app should start and display the live feed from the camera and a status message.
80+
81+
If you're deploying to a IoT device with an ARM processor, you'll need to select **ARM** as the target platform and **Remote Machine** as the target device. Provide the IP address of your device when prompted (it must be on the same network as your PC). You can get the IP Address from the Windows IoT default app once you boot the device and connect it to the network. Press F5 to run the program.
82+
83+
When you run the app for the first time, it won't have any knowledge of visual states. It will display a status message that no model is available.
84+
85+
## Capture training images
86+
87+
To set up a model, you need to put the app in the **Capturing Training Images** state. Take one of the following steps:
88+
* If you're running the app on PC, use the button on the top-right corner of the UI.
89+
* If you're running the app on an IoT device, call the `EnterLearningMode` method on the device through the IoT Hub. You can call it through the device entry in the IoT Hub menu on the Azure portal, or with a tool such as [IoT Hub Device Explorer](https://github.com/Azure/azure-iot-sdk-csharp/tree/master/tools/DeviceExplorer).
90+
91+
When the app enters the **Capturing Training Images** state, it will capture about two images every second until it has reached the target number of images. By default, this is 30 images, but you can set this parameter by passing the desired number as an argument to the `EnterLearningMode` IoT Hub method.
92+
93+
While the app is capturing images, you must expose the camera to the types of visual states that you want to detect (for example, an empty room, a room with
94+
people, an empty desk, a desk with a toy truck, and so on).
95+
96+
## Train the Custom Vision model
97+
98+
Once the app has finished capturing images, it will upload them and then switch to the **Waiting For Trained Model** state. At this point, you need to go to the [Custom Vision portal](https://www.customvision.ai/) and build a model based on the new training images. The following animation shows an example of this process.
99+
100+
![Animation: tagging multiple images of bananas](./media/iot-visual-alerts-tutorial/labeling.gif)
101+
102+
To repeat this process with your own scenario:
103+
104+
1. Sign in to the [Custom Vision portal](http://customvision.ai).
105+
1. Find your target project, which should now have all the training images that the app uploaded.
106+
1. For each visual state that you want to identify, select the appropriate images and manually apply the tag.
107+
* For example, if your goal is to distinguish between an empty room and a room with people in it, we recommend tagging five or more images with people as a new class, **People**, and tagging five or more images without people as the **Negative** tag. This will help the model differentiate between the two states.
108+
* As another example, if your goal is to approximate how full a shelf is, then you might use tags such as **EmptyShelf**, **PartiallyFullShelf**, and **FullShelf**.
109+
1. When you're finished, select the **Train** button.
110+
1. Once training is complete, the app will detect that a trained iteration is available. It will start the process of exporting the trained model to ONNX and downloading it to the device.
111+
112+
## Use the trained model
113+
114+
Once the app downloads the trained model, it will switch to the **Scoring** state and start scoring images from the camera in a continuous loop.
115+
116+
For each captured image, the app will display the top tag on the screen. If it doesn't recognize the visual state, it will display **No Matches**). The app also sends these messages to the IoT Hub, and if there is a class being detected, the message will include the label, the confidence score, and a property called `detectedClassAlert`, which can be used by IoT Hub clients interested in doing fast message routing based on properties.
117+
118+
In addition, the sample uses a [Sense HAT library](https://github.com/emmellsoft/RPi.SenseHat) to detect when it's running on a Raspberry Pi with a Sense HAT unit, so it can use it as an output display by setting all display lights to red whenever it detects a class and blank when it doesn't detect anything.
119+
120+
## Reuse the app
121+
122+
If you'd like to reset the app back to its original state, you can do so by clicking on the button on the top-right corner of the UI, or by invoking the method `DeleteCurrentModel` through the IoT Hub.
123+
124+
At any point, you can repeat the step of uploading training images by clicking the top-right UI button or calling the `EnterLearningMode` method again.
125+
126+
If you're running the app on a device and need to retrieve the IP address again (to establish a remote connection through the [Windows IoT Remote Client](https://www.microsoft.com/p/windows-iot-remote-client/9nblggh5mnxz#activetab=pivot:overviewtab), for example), you can call the `GetIpAddress` method through IoT Hub.
127+
128+
## Clean up resources
129+
130+
Delete your Custom Vision project if you no longer want to maintain it. On the [Custom Vision website](https://customvision.ai), navigate to **Projects** and select the trash can under your new project.
131+
132+
![Screenshot of a panel labeled My New Project with a trash can icon](./media/csharp-tutorial/delete_project.png)
133+
134+
## Next steps
135+
136+
In this tutorial, you set up and ran an application that detects visual state information on an IoT device and sends the results to the IoT Hub. Next, explore the source code further or make one of the suggested modifications below.
137+
138+
> [!div class="nextstepaction"]
139+
> [IoTVisualAlerts sample (GitHub)](https://github.com/Azure-Samples/Cognitive-Services-Vision-Solution-Templates/tree/master/IoTVisualAlerts)
140+
141+
* Add an IoT Hub method to switch the app directly to the **Waiting For Trained Model** state. This way, you can train the model with images that aren't captured by the device itself and then push the new model to the device on command.
142+
* Follow the [Visualize real-time sensor data](https://docs.microsoft.com/azure/iot-hub/iot-hub-live-data-visualization-in-power-bi) tutorial to create a Power BI Dashboard to visualize the IoT Hub alerts sent by the sample.
143+
* Follow the [IoT remote monitoring](https://docs.microsoft.com/azure/iot-hub/iot-hub-monitoring-notifications-with-azure-logic-apps) tutorial to create a Logic App that responds to the IoT Hub alerts when visual states are detected.
525 KB
Loading
1.39 MB
Loading

articles/cognitive-services/Custom-Vision-Service/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
href: go-tutorial-object-detection.md
4545
- name: Tutorials
4646
items:
47+
- name: IoT Visual Alerts app
48+
href: iot-visual-alerts-tutorial.md
4749
- name: Logo detector for mobile
4850
href: logo-detector-mobile.md
4951
- name: How-to guides

0 commit comments

Comments
 (0)