Skip to content

Latest commit

 

History

History
127 lines (86 loc) · 7.87 KB

EyeTracking_BasicSetup.md

File metadata and controls

127 lines (86 loc) · 7.87 KB

Getting started with eye tracking in MRTK

This page covers how to set up your Unity MRTK scene to use eye tracking in your app. The following assumes you are starting out with a fresh new scene. Alternatively, you can check out our already configured MRTK eye tracking examples with tons of great examples that you can directly build on.

Eye tracking requirements checklist

For eye tracking to work correctly, the following requirements must be met. If you are new to eye tracking on HoloLens 2 and to how eye tracking is set up in MRTK, don't worry! We will go into detail on how to address each of them further below.

  1. An 'Eye Gaze Data Provider' must be added to the input system. This provides eye tracking data from the platform.
  2. The 'GazeInput' capability must be enabled in the application manifest. This capability can be set in Unity 2019, but in Unity 2018 and earlier this capability is only available in Visual Studio and through the MRTK build tool
  3. The HoloLens must be eye calibrated for the current user. Check out our sample for detecting whether a user is eye calibrated or not.

A note on the GazeInput capability

The MRTK-provided build tooling (i.e. Mixed Reality Toolkit -> Utilities -> Build Window) can automatically enable the GazeInput capability for you. In order to do this, you need to make sure that the 'Gaze Input Capability' is checked on the 'Appx Build Options' tab:

MRTK Build Tools

This tooling will find the AppX manifest after the Unity build is completed and manually add the GazeInput capability. Prior to Unity 2019, this tooling is NOT active when using Unity's built-in Build Window (i.e. File -> Build Settings).

Prior to Unity 2019, when using Unity's build window, the capability will need to be manually added after the Unity build, as follows:

  1. Open your compiled Visual Studio project and then open the 'Package.appxmanifest' in your solution.
  2. Make sure to tick the 'GazeInput' checkbox under Capabilities. If you don't see a 'GazeInput' capability, check that your system meets the prerequisites for using MRTK (in particular the Windows SDK version).

Please note: You only have to do this if you build into a new build folder. This means that if you had already built your Unity project and set up the appxmanifest before and now target the same folder again, you will not need to reapply your changes.

Setting up eye tracking step-by-step

Setting up the scene

Set up the MixedRealityToolkit by simply clicking 'Mixed Reality Toolkit -> Configure…' in the menu bar.

MRTK

Setting up the MRTK profiles required for eye tracking

After setting up your MRTK scene, you will be asked to choose a profile for MRTK. You can simply select DefaultMixedRealityToolkitConfigurationProfile and then select the 'Copy & Customize' option.

MRTK

Create an "eye gaze data provider"

  • Click on the 'Input' tab in your MRTK profile.
  • To edit the default one ( 'DefaultMixedRealityInputSystemProfile' ), click the 'Clone' button next to it. A 'Clone Profile' menu appears. Simply click on 'Clone' at the bottom of that menu.
  • Double click on your new input profile, expand 'Input Data Providers', and select '+ Add Data Provider'.
  • Create a new data provider:
    • Under Type select 'Microsoft.MixedReality.Toolkit.WindowsMixedReality.Input' -> 'WindowsMixedRealityEyeGazeDataProvider'
    • For Platform(s) select 'Windows Universal'.

MRTK

Simulating eye tracking in the Unity Editor

You can simulate eye tracking input in the Unity Editor to ensure that events are correctly triggered before deploying the app to your HoloLens 2. The eye gaze signal is simulated by simply using the camera's location as eye gaze origin and the camera's forward vector as eye gaze direction. While this is great for initial testing, please note that it is not a good imitation for rapid eye movements. For this, it is better to ensure frequent tests of your eye-based interactions on the HoloLens 2.

  1. Enable simulated eye tracking:

    • Click on the 'Input' tab in your MRTK configuration profile.
    • From there, navigate to 'Input Data Providers' -> 'Input Simulation Service'.
    • Clone the 'DefaultMixedRealityInputSimpulationProfile' to make changes to it.
    • Check the 'Simulate Eye Position' checkbox.

    MRTK

  2. Disable default head gaze cursor: In general, it is recommended to avoid showing an eye gaze cursor or if absolutely required to make it very subtle. We do recommend to hide the default head gaze cursor that is attached to the MRTK gaze pointer profile by default.

    • Navigate to your MRTK configuration profile -> 'Input' -> 'Pointers'
    • Clone the 'DefaultMixedRealityInputPointerProfile' to make changes to it.
    • At the top of the 'Pointer Settings', you should assign an invisible cursor prefab to the 'GazeCursor'. You can do this by selecting the 'EyeGazeCursor' prefab from the MRTK Foundation.

Enabling eye-based gaze in the gaze provider

In HoloLens v1, head gaze was used as primary pointing technique. While head gaze is still available via the GazeProvider in MRTK which is attached to your Camera, you can check to use eye gaze instead by ticking the 'IsEyeTrackingEnabled' checkbox in the gaze settings of the input pointer profile.

Note

Developers can toggle between eye-based gaze and head-based gaze in code by changing the 'IsEyeTrackingEnabled' property of 'GazeProvider'.

Important

If any of the eye tracking requirements are not met, the application will automatically fall back to head-based gaze.

Accessing eye gaze data

Now that your scene is set up to use eye tracking, let's take a look at how to access it in your scripts: Accessing eye tracking data via EyeGazeProvider and eye-supported target selections.

Testing your Unity app on a HoloLens 2

Building your app with eye tracking should be similar to how you would compile other HoloLens 2 MRTK apps. Be sure that you have enabled the 'Gaze Input' capability as described above in the section A note on the GazeInput capability.

Eye calibration

Finally, please don't forget to run through the eye calibration on your HoloLens 2. The eye tracking system will not return any input if the user is not calibrated. Easiest way to get to the calibration is by flipping up the visor and back down. A system notification should appear welcoming you as a new user and asking you to go through the eye calibration. Alternatively you can find the eye calibration in the system settings: Settings > System > Calibration > Run eye calibration.

Eye tracking permission

When starting the app on your HoloLens 2 for the first time, a prompt should pop up asking the user for permission to use eye tracking. If it is not showing up, then that is usually an indication that the 'GazeInput' capability was not set.

After the permission prompt showed up once, it will not show up automatically again. If you "denied eye tracking permission", you can reset this in Settings -> Privacy -> Apps.


This should get you started with using eye tracking in your MRTK Unity app. Don't forget to check out our MRTK eye tracking tutorials and samples demonstrating how to use eye tracking input and conveniently providing scripts that you can reuse in your projects.


Back to "Eye tracking in the MixedRealityToolkit"