FamilyNotes sample

A mini-app that explores different input modalities and scenarios of user awareness. A bulletin-board app that allows family members to leave notes for each other on a common PC/tablet just like they would on a bulletin board. Using text, speech, or ink, a user can create a note and tag it for another user. Later, when that other user approaches the PC/tablet, the app uses imaging APIs and the Microsoft Cognitive Services (Face API) to detect their presence and display the notes that have been left for them, effectively filtering based on facial recognition. While the app is open, users can naturally interact with it using speech ("Add note for Bob").

Note - This sample is targeted and tested for Windows 10, version 2004 (10.0; Build 19041), and Visual Studio 2019. It is also tested on Windows 11 (Build 22000). If you're using Windows 11, you can use project properties to retarget the project(s) to Windows 11 (Build 22000).

This sample runs on the Universal Windows Platform (UWP).

FamilyNotes MainPage

FamilyNotes MainPage

Be aware that the image understanding capabilities of the FamilyNotes app use Microsoft Cognitive Services. Microsoft will receive the images and other data that you upload (via this app) for service improvement purposes. To report abuse of the Azure Face service to Microsoft, please visit the Microsoft Cognitive Services website at www.microsoft.com/cognitive-services, and use the "Report Abuse" link at the bottom of the page to contact Microsoft. For more information about Microsoft privacy policies please see the privacy statement here: http://go.microsoft.com/fwlink/?LinkId=521839.

Features

The FamilyNotes app demonstrates:

October 2021 update

This update includes:

  • Update to WinUI 2.7 and the latest WinUI styles.
  • The UI is redesigned to look at home on Windows 11, and rewritten to use the latest controls.
  • Support for a dark theme and full-screen mode.
  • Bug fixes and other improvements.

June 2020 update

This update includes:

  • Refactoring for WinUI 2.4 controls, specifically PersonPicture.

Universal Windows Platform development

Prerequisites

  • Windows 10 or Windows 11. Minimum: Windows 10, version 1809 (10.0; Build 17763), also known as the Windows 10 October 2018 Update.
  • Windows SDK. Minimum: Windows SDK version 10.0.19041.0 (Windows 10, version 1904).
  • Visual Studio 2019. You can use the free Visual Studio Community Edition to build and run Windows Universal Platform (UWP) apps.

To get the latest updates to Windows and the development tools, and to help shape their development, join the Windows Insider Program.

Running the sample

The default project is FamilyNotes and you can Start Debugging (F5) or Start Without Debugging (Ctrl+F5) to try it out. The app will run in the emulator or on physical devices, though functionality related to speech and face recognition is dependent on hardware support.

Requirements

  • User filtering by facial recognition requires:
    • A front-facing camera or USB webcam.
    • A subscription key for the Azure Face service. For information about getting a free trial key, see the Azure Cognitive Services site.
    • A user created with a profile picture.
      Note: The Azure Face service subscription key and endpoint must be entered in the Settings menu of the app before facial recognition can be used. The settings menu is opened by clicking the gear button on the apps navigation pane.
  • Speech recognition requires:
    • A microphone and the appropriate settings enabled on the local machine.

Articles

The FamilyNotes app illustrates a number of platform features. For more detailed articles about those features and their use within the app, see the following articles.

Also, some additional discussion and information about the original sample is available on the Windows Developer blog in the following posts.

Code at a glance

If you are interested in code snippets and don't want to browse or run the full sample, check out the following files for examples of some highlighted features:

  • Settings.cs : Downloads the Bing image of the day and allows for app config such as storing the developer key for the Azure Face service.
  • BindableInkCanvas.cs : An InkCanvas control with a bindable InkStrokeContainer.
  • Utils.cs : Delete a directory and its contents.
  • App.xaml.cs : Saves/loads the people and their notes. Demonstrates serialization and how to handle saving multiple InkStrokeContainers to a stream.
  • AddPersonContentDialog.xaml.cs : Contains the add person dialog, which has an option to take a snapshot for a user when adding him or her. This picture is taken using the CameraCaptureUI.
  • UserPresence.cs : Contains the code that is responsible for taking pictures in the background. These pictures are then used for user identification.
  • FacialSimilarity.cs : Contains the code used to interact with the Azure Face service for the purpose of comparing a dynamically captured user image against a list of known users to obtain the most likely user present.

See also

Microsoft Cognitive Services
Microsoft Cognitive Services samples Pen interactions and Windows Ink
Simple ink sample
Complex ink sample
Speech recognition and synthesis sample
Voice command sample