Skip to content

ghostiam/BrokenEye

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Caution

If you haven't purchased Pimax Crystal yet.
I DO NOT RECOMMEND YOU BUYING IT!
Save your nerves and money, avoid the Pimax company.
Promises are not kept! They release a new headset without fixing the old one!
I can't even get a refund for my faulty headset.

BrokenEye

Warning

This software is free and does not attempt to make a profit.

It is intended for NON-COMMERCIAL use only!
User is responsible for ensuring that the software is only used in compliance with any Tobii license restrictions (for example, any commercial use requires separate permission from Tobii).
If you want to use the data for commercial purposes, you MUST use Tobii Ocumen.

The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.

BrokenEye is an application that will allow you to obtain more detailed data from the Tobii Eye Tracker for the best social experience in VR, namely:

  • Gaze direction
  • Eye convergence
  • Pupil diameter
  • Blink / Eye openness (more details below)
  • Streaming images from cameras!

It also allows you to:

  • Save and load calibration data
  • Record and playback data from device (this is a regular zip).

Supported devices

  • Pimax Crystal
  • HP Reverb G2 Omnicept Edition

If your headset also supports Tobii tracking and you would like to add support for it to BrokenEye, please open an issue:

If the plugin works, then there is a high chance of working with BrokenEye.

BrokenEye features video:

Pimax Crystal with improved eye tracking using additional software

How to install

  1. Download the latest version of the application from releases.
  2. Just launch the application.

How to use

After launching the application you can choose:

image

  1. Which device will it connect to?
  2. Open data you have already recorded (or record if you are already connected to the device)
  3. Do not forget to enable or disable preview of data and images from cameras, whenever you need it, since previewing will create unnecessary load on your computer.
  4. Save or load Eye Tracker calibration data (be sure to calibrate the device before saving!).
  5. Server settings for streaming data and images from the camera.
  6. OSC server settings to receive eye openness data from another application.
  7. OSC server parameters.

All settings are saved automatically.

Note

You don't need to enable recording to use the application!
Recording is only necessary if you want to play back the data you received from the device in the future, for example, to configure an external application so as not to wear a headset.

Sending bug reports

If you find a bug, please report it in the issues. Please attach a logs and configuration file to the bug report, which can be found in the C:\Users\<USER>\AppData\Roaming\fyne\com.ghostiam.BrokenEye folder.

Use in VRChat

In order to use in VRChat, you should install VRCFaceTracking and a plugin for it PimaxCrystalAdvanced

First run BrokenEye and then VRCFaceTracking.

Using an external application to obtain eye openness data

Since we can only receive data on blinking from the tracker, to obtain data on eye openness, it is necessary use another application that will send data to BrokenEye via the OSC protocol, for example EyeTrackVR

How to configure EyeTrackVR

How to get data from BrokenEye

There are 2 APIs for receiving data:

  • HTTP (only for camera images)
  • RAW - data is transmitted over a TCP connection, in JSON format for processed data, and images in raw format.

HTTP API

Images from cameras are transmitted as MJPEG stream, which are available via address:

For the left eye:

http://127.0.0.1:5555/eye/left

For the right eye:

http://127.0.0.1:5555/eye/right

You can also preview images in your browser by going to:

http://127.0.0.1:5555/

The default port is 5555, but it can be changed in the application.

RAW API

To receive data in RAW format, you need to connect via TCP to the application on port 5555.

The request for data looks like this:

ID description
0x00 Request for eye tracking data in JSON format
0x01 Request for raw image of left eye
0x02 Request for raw image of right eye

we send:

ID
byte

we get in the loop:

ID Size Data
byte 4 bytes (little endian) Array of bytes

An example in C# for obtaining eye tracking data can be viewed in this file.

Eye tracking data format:

JSON example
{
  "left": {
    "gaze_direction_is_valid": false,
    "gaze_direction": [
      // X
      0,
      // Y
      0,
      // Z
      0
    ],
    "pupil_diameter_is_valid": false,
    "pupil_diameter_mm": -1,
    "pupil_position_on_image_is_valid": false,
    "pupil_position_on_image": [
      // X
      -1,
      // Y
      -1
    ],
    "openness_is_valid": true,
    "openness": 1
  },
  "right": {
    "gaze_direction_is_valid": false,
    "gaze_direction": [
      // X
      0,
      // Y
      0,
      // Z
      0
    ],
    "pupil_diameter_is_valid": false,
    "pupil_diameter_mm": -1,
    "pupil_position_on_image_is_valid": false,
    "pupil_position_on_image": [
      // X
      -1,
      // Y
      -1
    ],
    "openness_is_valid": true,
    "openness": 1
  }
}

Raw image format:

Width Height Bit per pixel Raw data
4 bytes 4 bytes 4 bytes N bytes

Where N is the size of the image in bytes:

N = Width * Height * (Bit per pixel / 8)

About

Gain access to advanced eye tracking data and camera images for the Pimax Crystal or HP Reverb G2 Omnicept Eye Tracker.

Topics

Resources

Stars

Watchers

Forks