Tobii.Glasses3.SDK 0.7.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Tobii.Glasses3.SDK --version 0.7.2.1
NuGet\Install-Package Tobii.Glasses3.SDK -Version 0.7.2.1
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.Glasses3.SDK" Version="0.7.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tobii.Glasses3.SDK --version 0.7.2.1
#r "nuget: Tobii.Glasses3.SDK, 0.7.2.1"
#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.Glasses3.SDK as a Cake Addin
#addin nuget:?package=Tobii.Glasses3.SDK&version=0.7.2.1

// Install Tobii.Glasses3.SDK as a Cake Tool
#tool nuget:?package=Tobii.Glasses3.SDK&version=0.7.2.1

Tobii Pro Glasses 3 SDK for .net Build G3SDK

License

The source code for this SDK and its examples is licensed under the Tobii Software Development License Agreement.

Installation

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

You can install using the dotnet CLI like this:

dotnet add package Tobii.Glasses3.SDK

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

On Visual Studio, make sure that you are targeting atleast either .netframework 4.7.2 or .net5, as this package uses some features of newer .NETs.

Alternatively, you can download it directly.

Using the Glasses 3 SDK

Here is an example of how to make a calibration and a 10 second recording with the first available pair of glasses:

var browser = new G3Browser();
       
// grab the first available glasses
var g3 = (await browser.ProbeForDevices()).First();

// try to calibrate, if it succeeds, proceed with the recording
if (await g3.Calibrate.Run())
{
    await g3.Recorder.Start();
    await Task.Delay(TimeSpan.FromSeconds(10));
    await g3.Recorder.Stop();
}

Documentation

There is a Glasses 3 Developers Guide available for download from the Tobii website. Even though the SDK handles most of the communication with the glasses, it is still recommended to read the developers guide to get a better overview of how the API works. For more information on individual methods in the SDK, please refer to the API documentation in the WebUI on your glasses (http://<serialnumber>.local).

Limitations

The SDK does not support streaming data via WebRTC or RTSP on its own, you will need exteral libraries for that. RtspClientSharp or FFMediaElement is a good start if you want to use video streaming over RTSP.

Samples

Glasses Demo

Demo that shows

  • How to find glasses
  • Show live view (using RTSP via the FFME.Windows package) with synchronized local gaze overlay
  • Start/stop recordings
  • Calibrate glasses
  • Change settings
  • List recordings and read recording meta data
  • Delete recordings
  • Replay recording (using HTTP) with synchronized local gaze overlay
  • Take and show snapshots/thumbnails

LSL Connector for Glasses 3

This is a complete sample that will expose Glasses3 data streams to as Lab Streaming Layer data streams. To run the sample, just build and start it. It will automatically locate any available Glasses 3 device and register a stream outlet for the gaze stream from the unit.

Document extractor for Glasses 3

This example shows how to access metadata for the API including the documentation that is used to build the API browser in the WebUI for Glasses 3. It will extract the documentation and save it as a json-file. There is also a very simple viewer for such json-files that can show two json-files side by side and highlight the changes.

Start the webserver in examples\G3DocumentExtractor\miniweb\miniweb.exe and point your web browser to http://localhost:8000 included in the repo is the json files for the firmware versions that have been publicly released.

G3 To Screen Mapper

This is a rather advanced demo that shows how to receive and display RTSP video using OpenCV. it also performs some image processing of the video to find and position a computer screen in the video and map the gaze data to the coordinate system of this screen.

To do this, the screen is decorated with ArUco markers along the edges. The application uses OpenCV to receive live video frames from the camera of the glasses, each frame is searched for existing ArUco markers (again using OpenCV). If enough markers are found, the position of the screen in the video frame is determined, and then gaze data is transformed from frame to the screen. The original video frame is warped to a new image using the same transform so that the screen is mapped to the center of image. Both the warped image and the original video frame is displayed in a window.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 149 2/5/2024
1.0.0 875 10/26/2022
0.8.0 595 3/23/2022
0.7.4 417 12/13/2021
0.7.3.5 305 12/9/2021
0.7.2.1 398 9/24/2021

First public release, supports Glasses3 firmware 1.14