From 76e3ff5eb616a89eb0e5e60cb48d46f9fd88a31a Mon Sep 17 00:00:00 2001 From: matthewle2020 <33590846+matthewle2020@users.noreply.github.com> Date: Wed, 10 Oct 2018 11:35:12 -0500 Subject: [PATCH 1/3] Update README.md --- CardReader/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CardReader/README.md b/CardReader/README.md index e69de29..0b10348 100644 --- a/CardReader/README.md +++ b/CardReader/README.md @@ -0,0 +1,23 @@ +# CardReader +## Overview: +An application that demonstrates how to capture Media Elements from a live camera feed in order to create a new contact. This extracts the text and integrates it into the Windows People App using Optical Character Recognition (OCR). + +This application tutorial is broken up into the following exercises: + +1. Setup a Windows 10 Universal Application using Visual Studio Community edition 2015. +2. Use an embedded/external camera in order to capture Media using MediaCapture API. +..* XAML elements and Code Behind Events in order to find cameras +..* Connect to selected camera +..* Display the camera feed. +3. Extract text from an image using the Optical Character Recognition (OCR) library. +4. Integrate with the Windows People App. + +## Technical requirements: +* Some experience with C# and XAML. +* [Visual Studio 2015 and Windows developer tooling.](https://dev.windows.com/en-us/downloads) +* Ensure you are using [Windows 10 or better.](https://www.microsoft.com/en-us/windows/windows-10-upgrade) +* Hardware: + * At least one (1) HD camera device connected or embedded. + +## Getting started: +To use these exercises, download the entire exercises ZIP or clone the repository. If you download the ZIP, you can then unzip the entire archive and use the exercises in Visual Studio 2015. An overview of the code can be found in the CardReader exercises folder. From 2e42f0d770e8312523aa10db8164c8e06e2d01a4 Mon Sep 17 00:00:00 2001 From: matthewle2020 <33590846+matthewle2020@users.noreply.github.com> Date: Wed, 10 Oct 2018 11:37:36 -0500 Subject: [PATCH 2/3] Update README.md --- CardReader/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CardReader/README.md b/CardReader/README.md index 0b10348..19f7b15 100644 --- a/CardReader/README.md +++ b/CardReader/README.md @@ -4,13 +4,13 @@ An application that demonstrates how to capture Media Elements from a live camer This application tutorial is broken up into the following exercises: -1. Setup a Windows 10 Universal Application using Visual Studio Community edition 2015. -2. Use an embedded/external camera in order to capture Media using MediaCapture API. -..* XAML elements and Code Behind Events in order to find cameras -..* Connect to selected camera -..* Display the camera feed. -3. Extract text from an image using the Optical Character Recognition (OCR) library. -4. Integrate with the Windows People App. +1. Setup a Windows 10 Universal Application using Visual Studio Community edition 2015. +2. Use an embedded/external camera in order to capture Media using MediaCapture API. +..* XAML elements and Code Behind Events in order to find cameras +..* Connect to selected camera +..* Display the camera feed. +3. Extract text from an image using the Optical Character Recognition (OCR) library. +4. Integrate with the Windows People App. ## Technical requirements: * Some experience with C# and XAML. From bef92ef43b16a9c8c218baeb466438ef61cdb827 Mon Sep 17 00:00:00 2001 From: matthewle2020 <33590846+matthewle2020@users.noreply.github.com> Date: Wed, 10 Oct 2018 11:39:26 -0500 Subject: [PATCH 3/3] Update README.md --- CardReader/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CardReader/README.md b/CardReader/README.md index 19f7b15..07430d5 100644 --- a/CardReader/README.md +++ b/CardReader/README.md @@ -6,9 +6,9 @@ This application tutorial is broken up into the following exercises: 1. Setup a Windows 10 Universal Application using Visual Studio Community edition 2015. 2. Use an embedded/external camera in order to capture Media using MediaCapture API. -..* XAML elements and Code Behind Events in order to find cameras -..* Connect to selected camera -..* Display the camera feed. + * XAML elements and Code Behind Events in order to find cameras + * Connect to selected camera + * Display the camera feed. 3. Extract text from an image using the Optical Character Recognition (OCR) library. 4. Integrate with the Windows People App.