forked from microsoft/Cognitive-Samples-IntelligentKiosk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomVisionExplorer.xaml.cs
412 lines (343 loc) · 16.1 KB
/
CustomVisionExplorer.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license.
//
// Microsoft Cognitive Services: http://www.microsoft.com/cognitive
//
// Microsoft Cognitive Services Github:
// https://github.com/Microsoft/Cognitive
//
// Copyright (c) Microsoft Corporation
// All rights reserved.
//
// MIT License:
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED ""AS IS"", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction;
using Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training;
using Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models;
using ServiceHelpers;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Threading.Tasks;
using Windows.UI.Popups;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
namespace IntelligentKioskSample.Views
{
[KioskExperience(Title = "Custom Vision Explorer", ImagePath = "ms-appx:/Assets/CustomVisionExplorer.png")]
public sealed partial class CustomVisionExplorer : Page
{
private ImageAnalyzer currentPhoto;
private TrainingApi userProvidedTrainingApi;
private PredictionEndpoint userProvidedPredictionApi;
public ObservableCollection<ProjectViewModel> Projects { get; set; } = new ObservableCollection<ProjectViewModel>();
public ObservableCollection<ActiveLearningTagViewModel> PredictionDataForRetraining { get; set; } = new ObservableCollection<ActiveLearningTagViewModel>();
public CustomVisionExplorer()
{
this.InitializeComponent();
this.cameraControl.ImageCaptured += CameraControl_ImageCaptured;
this.cameraControl.CameraRestarted += CameraControl_CameraRestarted;
}
private async void CameraControl_CameraRestarted(object sender, EventArgs e)
{
// We induce a delay here to give the camera some time to start rendering before we hide the last captured photo.
// This avoids a black flash.
await Task.Delay(500);
this.imageFromCameraWithFaces.Visibility = Visibility.Collapsed;
this.resultsDetails.Visibility = Visibility.Collapsed;
}
private void DisplayProcessingUI()
{
this.resultsDetails.Visibility = Visibility.Collapsed;
this.resultsGridView.ItemsSource = null;
this.progressRing.IsActive = true;
}
private async void UpdateResults(ImageAnalyzer img)
{
this.searchErrorTextBlock.Visibility = Visibility.Collapsed;
Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.ImagePrediction result = null;
var currentProjectViewModel = (ProjectViewModel)this.projectsComboBox.SelectedValue;
var currentProject = ((ProjectViewModel)this.projectsComboBox.SelectedValue).Model;
var trainingApi = this.userProvidedTrainingApi;
var predictionApi = this.userProvidedPredictionApi;
try
{
var iteractions = await trainingApi.GetIterationsAsync(currentProject.Id);
var latestTrainedIteraction = iteractions.Where(i => i.Status == "Completed").OrderByDescending(i => i.TrainedAt.Value).FirstOrDefault();
if (latestTrainedIteraction == null)
{
throw new Exception("This project doesn't have any trained models yet. Please train it, or wait until training completes if one is in progress.");
}
if (img.ImageUrl != null)
{
result = await CustomVisionServiceHelper.PredictImageUrlWithRetryAsync(predictionApi, currentProject.Id, new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.ImageUrl(img.ImageUrl), latestTrainedIteraction.Id);
}
else
{
result = await CustomVisionServiceHelper.PredictImageWithRetryAsync(predictionApi, currentProject.Id, img.GetImageStreamCallback, latestTrainedIteraction.Id);
}
}
catch (Exception ex)
{
await Util.GenericApiCallExceptionHandler(ex, "Error");
}
this.progressRing.IsActive = false;
this.resultsDetails.Visibility = Visibility.Visible;
var matches = result?.Predictions?.Where(r => Math.Round(r.Probability * 100) > 0);
if (matches == null || !matches.Any())
{
this.searchErrorTextBlock.Visibility = Visibility.Visible;
}
else
{
this.resultsGridView.ItemsSource = matches.Select(t => new { Tag = t.TagName, Probability = string.Format("{0}%", Math.Round(t.Probability * 100)) });
}
if (result?.Predictions != null)
{
this.activeLearningButton.Opacity = 1;
this.PredictionDataForRetraining.Clear();
this.PredictionDataForRetraining.AddRange(result.Predictions.Select(
t => new ActiveLearningTagViewModel
{
PredictionResultId = result.Id,
TagId = t.TagId,
TagName = t.TagName,
HasTag = Math.Round(t.Probability * 100) > 0
}));
}
else
{
this.activeLearningButton.Opacity = 0;
}
}
private async void CameraControl_ImageCaptured(object sender, ImageAnalyzer e)
{
this.UpdateActivePhoto(e);
this.imageFromCameraWithFaces.DataContext = e;
this.imageFromCameraWithFaces.Visibility = Visibility.Visible;
await this.cameraControl.StopStreamAsync();
}
private void UpdateActivePhoto(ImageAnalyzer img)
{
this.currentPhoto = img;
this.landingMessage.Visibility = Visibility.Collapsed;
this.DisplayProcessingUI();
this.UpdateResults(img);
}
protected override async void OnNavigatingFrom(NavigatingCancelEventArgs e)
{
await this.cameraControl.StopStreamAsync();
base.OnNavigatingFrom(e);
}
protected override async void OnNavigatedTo(NavigationEventArgs e)
{
if (!string.IsNullOrEmpty(SettingsHelper.Instance.CustomVisionTrainingApiKey) &&
!string.IsNullOrEmpty(SettingsHelper.Instance.CustomVisionPredictionApiKey))
{
userProvidedTrainingApi = new TrainingApi { BaseUri = new Uri("https://southcentralus.api.cognitive.microsoft.com/customvision/v2.0/Training"), ApiKey = SettingsHelper.Instance.CustomVisionTrainingApiKey };
userProvidedPredictionApi = new PredictionEndpoint { BaseUri = new Uri("https://southcentralus.api.cognitive.microsoft.com/customvision/v2.0/Prediction"), ApiKey = SettingsHelper.Instance.CustomVisionPredictionApiKey };
}
this.DataContext = this;
await this.LoadProjectsFromService();
if (!this.Projects.Any())
{
await new MessageDialog("It looks like you don't have any projects yet. Please create a project via the '+' button near the Target Project list in this page.", "No projects found").ShowAsync();
this.webCamButton.IsEnabled = false;
this.PicturesAppBarButton.IsEnabled = false;
}
base.OnNavigatedTo(e);
}
private async Task LoadProjectsFromService()
{
this.progressRing.IsActive = true;
try
{
this.Projects.Clear();
// Add projects from API Keys provided by user
if (this.userProvidedTrainingApi != null && this.userProvidedPredictionApi != null)
{
IEnumerable<Project> projects = await this.userProvidedTrainingApi.GetProjectsAsync();
foreach (var project in projects.OrderBy(p => p.Name))
{
this.Projects.Add(
new ProjectViewModel
{
Model = project,
TagSamples = new ObservableCollection<TagSampleViewModel>()
});
}
}
if (this.projectsComboBox.Items.Any())
{
this.projectsComboBox.SelectedIndex = 0;
}
this.progressRing.IsActive = false;
// Trigger loading of the tags associated with each project
foreach (var project in this.Projects)
{
this.PopulateTagSamplesAsync(project.Model.Id,
this.userProvidedTrainingApi,
project.TagSamples);
}
}
catch (Exception ex)
{
await Util.GenericApiCallExceptionHandler(ex, "Failure loading projects");
}
}
private async void PopulateTagSamplesAsync(Guid projectId, TrainingApi trainingEndPoint, ObservableCollection<TagSampleViewModel> collection)
{
foreach (var tag in (await trainingEndPoint.GetTagsAsync(projectId)).OrderBy(t => t.Name))
{
if (tag.ImageCount > 0)
{
var imageModelSample = await trainingEndPoint.GetTaggedImagesAsync(projectId, null, new string[] { tag.Id.ToString() }, null, 1);
collection.Add(new TagSampleViewModel { TagName = tag.Name, TagSampleImage = imageModelSample.First().ThumbnailUri });
}
}
}
private async void OnImageSearchCompleted(object sender, IEnumerable<ImageAnalyzer> args)
{
this.imageSearchFlyout.Hide();
ImageAnalyzer image = args.First();
image.ShowDialogOnFaceApiErrors = true;
this.imageWithFacesControl.Visibility = Visibility.Visible;
this.webCamHostGrid.Visibility = Visibility.Collapsed;
await this.cameraControl.StopStreamAsync();
this.UpdateActivePhoto(image);
this.imageWithFacesControl.DataContext = image;
}
private void OnImageSearchCanceled(object sender, EventArgs e)
{
this.imageSearchFlyout.Hide();
}
private async void OnWebCamButtonClicked(object sender, RoutedEventArgs e)
{
await StartWebCameraAsync();
}
private async Task StartWebCameraAsync()
{
this.landingMessage.Visibility = Visibility.Collapsed;
this.webCamHostGrid.Visibility = Visibility.Visible;
this.imageWithFacesControl.Visibility = Visibility.Collapsed;
this.resultsDetails.Visibility = Visibility.Collapsed;
await this.cameraControl.StartStreamAsync();
await Task.Delay(250);
this.imageFromCameraWithFaces.Visibility = Visibility.Collapsed;
UpdateWebCamHostGridSize();
}
private void OnPageSizeChanged(object sender, SizeChangedEventArgs e)
{
UpdateWebCamHostGridSize();
}
private void UpdateWebCamHostGridSize()
{
this.webCamHostGrid.Width = this.webCamHostGrid.ActualHeight * (this.cameraControl.CameraAspectRatio != 0 ? this.cameraControl.CameraAspectRatio : 1.777777777777);
}
private void OnResultTypeSelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (this.currentPhoto != null)
{
this.UpdateActivePhoto(this.currentPhoto);
}
}
private void EditProjectsClicked(object sender, RoutedEventArgs e)
{
AppShell.Current.NavigateToPage(typeof(CustomVisionSetup));
}
private async void TriggerActiveLearningButtonClicked(object sender, RoutedEventArgs e)
{
this.activeLearningFlyout.Hide();
var currentProject = ((ProjectViewModel)this.projectsComboBox.SelectedValue).Model;
try
{
var tags = this.PredictionDataForRetraining.Where(d => d.HasTag).Select(d => d.TagId).ToList();
if (tags.Any())
{
var test = await this.userProvidedTrainingApi.CreateImagesFromPredictionsAsync(currentProject.Id,
new ImageIdCreateBatch
{
TagIds = tags,
Images = new List<ImageIdCreateEntry>(new ImageIdCreateEntry[] { new ImageIdCreateEntry(this.PredictionDataForRetraining.First().PredictionResultId) })
});
}
else
{
await new MessageDialog("You need to select at least one Tag in order to save and re-train.").ShowAsync();
return;
}
}
catch (Exception ex)
{
await Util.GenericApiCallExceptionHandler(ex, "Failure adding image to the training set");
return;
}
this.progressRing.IsActive = true;
bool trainingSucceeded = true;
try
{
Iteration iterationModel = await userProvidedTrainingApi.TrainProjectAsync(currentProject.Id);
while (true)
{
iterationModel = await userProvidedTrainingApi.GetIterationAsync(currentProject.Id, iterationModel.Id);
if (iterationModel.Status != "Training")
{
if (iterationModel.Status == "Failed")
{
trainingSucceeded = false;
}
break;
}
await Task.Delay(500);
}
}
catch (Exception ex)
{
await Util.GenericApiCallExceptionHandler(ex, "The image was added to the training set, but re-training failed. You can try re-training later via the Custom Vision Setup page.");
}
if (!trainingSucceeded)
{
await new MessageDialog("The image was added to the training set, but re-training failed. You can try re-training later via the Custom Vision Setup page.").ShowAsync();
}
this.progressRing.IsActive = false;
}
}
public class ProjectViewModel
{
public Project Model { get; set; }
public ObservableCollection<TagSampleViewModel> TagSamples { get; set; }
}
public class TagSampleViewModel
{
public string TagName { get; set; }
public string TagSampleImage { get; set; }
}
public class ActiveLearningTagViewModel
{
public Guid PredictionResultId { get; set; }
public Guid TagId { get; set; }
public string TagName { get; set; }
public bool HasTag { get; set; }
}
}