Hnkee / Eyetracking.NET

Minimal SDK for writing .NET applications with eyetracking
MIT License
4 stars 1 forks source link

Eyetracking .NET

Nuget

What is this repository for?

Minimal .NET wrapper for eyetracking

What is eyetracking?

Knowing what the user is looking at, normalized coordinates on the screen (direction in VR)

How do I get set up?

Use nuget package Eyetracking.NET

Who do I talk to?

The hand

Sample

using Eyetracking.NET;

class Program
{
    static void Main(string[] args)
    {
        var eyetracker = new Eyetracker();
        while (!Console.KeyAvailable)
        {
            Console.WriteLine($"{eyetracker.X} , {eyetracker.Y}");
        }
    }
}