Virtual reality eye tracking event classification algorithm
Project description
vr-idt
This package provides a VR tailored eye-tracking classification algorithm for identifying fixations and saccades in data gathered from VR headsets.
Background
The algorithm was initially proposed and implemented by Jose Llanes-Jurado, Javier Marín-Morales, Jaime Guixeres, and Mariano Alcañiz in their paper, Development and Calibration of an Eye-Tracking Fixation Identification Algorithm for Immersive Virtual Reality.
Code from the original authors is here github/ASAPLableni.
Installation
Install this package using pip (Python virtual environments).
$ pip install vr-idt
Classify fixations
def classify_fixations(df: pd.DataFrame,
min_duration: float = 0.15,
max_angle: float = 1.50,
min_freq: float = 30.0,
time: str = "time",
gaze_world_x: str = "gaze_world_x",
gaze_world_y: str = "gaze_world_y",
gaze_world_z: str = "gaze_world_z",
head_pos_x: str = "head_pos_x",
head_pos_y: str = "head_pos_y",
head_pos_z: str = "head_pos_z") -> pd.DataFrame:
"""Classify VR eye fixation events in eye-tracking data.
Args:
df: DataFrame with eye tracking data to classify
min_duration: The minimum length of a fixation in seconds
max_angle: The maximum angle of dispersion within the fixation within
min_freq: The minimum required frequency for a fixation to be classified
time: df column name for time (sec) data
gaze_world_x: df column name for gaze position in virtual world data
gaze_world_y: df column name for gaze position in virtual world data
gaze_world_z: df column name for gaze position in virtual world data
head_pos_x: df column name for head position in physical space data
head_pos_y: df column name for head position in physical space data
head_pos_z: df column name for head position in physical space data
Returns:
fixation_df: Copy of original arg 'df' with 4 new fixation related columns:
"fixation", "fixation_start", "fixation_end", and "fixation_duration"
"""
Example
import pandas as pd
from vr_idt.vr_idt import classify_fixations
# Load in data with eye tracking data
df = pd.read_csv("<path/to/data>")
# Setup a column name mapping so algorithm knows where to look for necessary data
col_name_map = {
"gaze_world_x": "Gaze Pos X (world)",
"gaze_world_y": "Gaze Pos Y (world)",
"gaze_world_z": "Gaze Pos Z (world)",
"head_pos_x": "Head Pos X",
"head_pos_y": "Head Pos Y",
"head_pos_z": "Head Pos Z"
}
# Define some parameters
min_duraion = 0.15
max_angle = 1.5
min_freq = 25
# Run algorithm and add 4 fixation related columns to df
df = classify_fixations(df, min_duration, max_angle, min_freq, **col_name_map)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vr-idt-0.0.5.tar.gz.
File metadata
- Download URL: vr-idt-0.0.5.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9352bbe5c342a4d810b78fb79c38963fec10279da33846666cd02dbb3bc495c
|
|
| MD5 |
48c532047d02ef667052352f09d030f3
|
|
| BLAKE2b-256 |
c263260e3ac03d24d739e809c48c3d9d4ca905004f3321b40813c693c372a2d6
|
File details
Details for the file vr_idt-0.0.5-py3-none-any.whl.
File metadata
- Download URL: vr_idt-0.0.5-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ec9d9bcb9f7c4d6c06e86a4ebb50b71695ce13655c15b0443dcab87d0997b8a
|
|
| MD5 |
22a4b9cfe87f7d6e6c3617cfc7883782
|
|
| BLAKE2b-256 |
482e47e99d80dc2452b1909134e93689c6a24276ffb8338d24a90715dbdabb49
|