Book Image

HoloLens Blueprints

By : Abhijit Jana, Manish Sharma, Mallikarjuna Rao
Book Image

HoloLens Blueprints

By: Abhijit Jana, Manish Sharma, Mallikarjuna Rao

Overview of this book

Do you want to create stunning applications with HoloLens? Are you a developer who is fascinated with Microsoft HoloLens and its capabilities? If so, this is the book for you. This book introduces and demystifies the HoloLens platform and shows you different ways of interaction with computers (mixed-reality). You will start your mixed-reality journey by understanding different types of digital reality. You will learn to build your first holographic app. Also, you will understand holographic application integration possibilities within Line of Business Applications using Azure. Moving ahead, you will create Integrated Solutions using IoT with HoloLens. Gradually you'll learn how to create and deploy apps on a device. You will learn to publish application to the store; if you are an enterprise developer, you will also manage and distribute applications for enterprise-enabled or domain-joined HoloLens. Finally, you will develop an end-to-end realistic holographic app, ranging from scenario identification to sketching, development, deployment, and, finally, production.
Table of Contents (20 chapters)
Title Page
Credits
About the Authors
Acknowledgments
About the Reviewer
Disclaimer
Customer Feedback
www.PacktPub.com
Dedication
Preface
7
Build End-to-End Retail Solution - Scenario Identification and Sketching

Using HoloLens emulator


HoloLens emulator will allow you to test holographic applications on your PC without a physical HoloLens device. This emulator uses a Hyper-V virtual machine, which is similar to other emulators, such as windows or android emulators.

To test out the emulator, let's create a sample universal windows holographic application and run it on HoloLens emulator. Follow these steps to create a new holographic application:

  1. Open Visual Studio and create a new project by selecting the menu option File | New | Project.
  2. Within the New Project window, select Holographic DirectX 11 App (Universal Windows) project type and create Project.

Holographic project option in Visual Studio

  1. This will create a default Holographic project with a rotating cube in the default view.
  2. Now make sure that Solution Platform option is set to x86, and HoloLens Emulator is selected in the Emulator option. After that, build and run the project.

Project type and emulator setting before build

  1. After the project is...