Tobii.Research.x64 1.11.0.1334

dotnet add package Tobii.Research.x64 --version 1.11.0.1334
NuGet\Install-Package Tobii.Research.x64 -Version 1.11.0.1334
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tobii.Research.x64" Version="1.11.0.1334" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tobii.Research.x64 --version 1.11.0.1334
#r "nuget: Tobii.Research.x64, 1.11.0.1334"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tobii.Research.x64 as a Cake Addin
#addin nuget:?package=Tobii.Research.x64&version=1.11.0.1334

// Install Tobii.Research.x64 as a Cake Tool
#tool nuget:?package=Tobii.Research.x64&version=1.11.0.1334

Tobii Pro SDK

Welcome to the Tobii Pro SDK for .net developers. It allows easy access to configuration and data streams from Tobii Pro screen based eye trackers such as Tobii Pro Spectrum, Tobii Pro Fusion and Tobii Pro Nano, but also older trackers such as Tobii TX300 and Tobii Pro X2/X3, a comprehensive guide of supported devices is available here.

License

The usage of the Tobii Pro SDK is handled by the Tobii Software Development License Agreement.

Prerequisites

Your project needs to target one of the following:

  • .NET Framework 4.6.1 or later
  • .NET 5.0 or later
  • .NET Core 2.0 or later

Installation

The easiest way to get started is to use the NuGet package for Tobii Pro SDK

You can install using NuGet like this:

nuget install Tobii.Research.x64

Or select it from the NuGet packages UI on Visual Studio.

Alternatively, you can download it directly.

Documentation

The documentation for the Tobii Pro SDK is available at developer.tobiipro.com. The documentation site has reference documentation for all language bindings of the SDK (there are also python, matlab, c/c++ bindings). For .NET developers, the following sections are most relevant:

Usage

Here are some quick samples to get you started:

Finding all eye trackers

var eyeTrackers = EyeTrackingOperations.FindAllEyeTrackers();
            foreach (var eyeTracker in eyeTrackers)
            {
                Console.WriteLine($"{eyeTracker.Address}, {eyeTracker.DeviceName}, {eyeTracker.Model}, {eyeTracker.SerialNumber}");
            }

Subscribe to gaze:

        private void SubscribeGazeData(IEyeTracker eyeTracker)
        {
            // Start listening to gaze data.
            eyeTracker.GazeDataReceived += EyeTracker_GazeDataReceived;
            // Wait for some data to be received.
            System.Threading.Thread.Sleep(2000);
            // Stop listening to gaze data.
            eyeTracker.GazeDataReceived -= EyeTracker_GazeDataReceived;
        }

        private void EyeTracker_GazeDataReceived(object sender, GazeDataEventArgs e)
        {
            if (e.leftEye.GazePoint.Validity == Validity.Valid)
            {
                var left = e.LeftEye.GazePoint.PositionOnDisplayArea;
                Console.WriteLine($"Left gaze: ({left.X}, {right.Y)");
            }
        }
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Tobii.Research.x64:

Package Downloads
TobiiSBETDriver

A simplified driver library for Tobii screen-based eye trackers. Requires x64 CPU.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.11.0.1334 661 3/9/2023
1.10.1.1282 1,880 6/9/2022
1.9.0.1198 1,678 9/15/2021
1.8.0.1108 2,161 6/23/2020
1.7.0.1070 4,728 5/2/2019
1.6.2.1055 590 4/26/2019
1.6.1.987 1,517 12/11/2018
1.6.0.981 777 11/7/2018
1.5.0.942 1,641 5/24/2018
1.4.0.926 1,424 4/11/2018
1.4.0.924 910 4/11/2018
1.3.0.872 1,014 1/22/2018
1.2.1.844 954 11/22/2017
1.2.0.820 1,095 10/12/2017
1.1.4.790 1,134 8/30/2017
1.1.1.749 975 7/10/2017
1.1.0.738 959 6/20/2017
1.0.4.677 987 4/27/2017
1.0.1.652 1,032 3/21/2017