Skip to main content

Package for eye tracking algorithm allowing for development of gaze controlled computer interface

Project description

PyPI - Downloads made in PL

EYEGESTURES

EyeGestures is open source eyetracking software/library using native webcams and phone camers for achieving its goal. The aim of library is to bring accessibility of eye-tracking and eye-driven interfaces without requirement of obtaining expensive hardware.

Our Mission!

💜 Sponsors:

[!NOTE] Check JS port: EyeGesturesLite!

[!IMPORTANT]
EyeGestures is a fully volunteer-based project and exists thanks to your donations and support.

Donation

📢📢 If you are bussiness and would like to collaborate, reach us: contact@eyegestures.com 📢📢

We can provide custom comercial license and invoices if needed.


🔨 Projects build with EyeGestures:

Subscribe and get access to our software:

Subscribe on Polar


⚓ Ports:

💻 Install

python3 -m pip install eyeGestures

[!WARNING] some users report that mediapipe, scikit-learn or opencv is not installing together with eyegestures. To fix it, just install it with pip.

⚙️ Try

Tracker works best when your camera or laptop is at arm's length, similar to how you would typically use it. If you are further away, it may be less responsive for now - currently working on solving this issue.

python3 examples/simple_example_v2.py
python3 examples/simple_example.py [legacy tracker, will become obsolete]

🔧 Build your own:

Using EyeGesture Engine V3 - Faster smaller better:

from eyeGestures.utils import VideoCapture
from eyeGestures import EyeGestures_v3

# Initialize gesture engine and video capture
gestures = EyeGestures_v3()
cap = VideoCapture(0)
calibrate = True
screen_width = 500
screen_height= 500

# Process each frame
while True:
  ret, frame = cap.read()
  event, cevent = gestures.step(frame,
    calibrate,
    screen_width,
    screen_height,
    context="my_context")

  if event:
    cursor_x, cursor_y = event.point[0], event.point[1]
    fixation = event.fixation
    saccades = event.saccadess # saccadess movement detector
    # calibration_radius: radius for data collection during calibration

Using EyeGesture Engine V2 - [Legacy]:

from eyeGestures.utils import VideoCapture
from eyeGestures import EyeGestures_v2

# Initialize gesture engine and video capture
gestures = EyeGestures_v2()
cap = VideoCapture(0)  
calibrate = True
screen_width = 500
screen_height= 500

# Process each frame
while True:
  ret, frame = cap.read()
  event, cevent = gestures.step(frame,
    calibrate,
    screen_width,
    screen_height,
    context="my_context")

  if event:
    cursor_x, cursor_y = event.point[0], event.point[1]
    fixation = event.fixation
    # calibration_radius: radius for data collection during calibration

Customize [only V1/V2]:

You can customize your calibration points/map to fit your solutions. Simple copy snippet below, and place your calibration poitns on x,y planes from 0.0 to 1.0. It will be then automatically scaled to your display.

gestures = EyeGestures_v2()
gestures.uploadCalibrationMap([[0,0],[0,1],[1,0],[1,1]])

V2 is two stage tracker. It runs V1 under the hood but then uses it as feature extractor for V2 machine learning component, and combines both outputs to generate new gaze point. It is possible to control how much V1 affects V2 by:

gestures.setClassicImpact(N) # setting N = 2 is working best for my testing 

This makes that sample obtained from V2 is averaged with N times sample from V1 (same sample copied that many times). In outcome having V2 impacting output in 1/N+1 and V1 N/N+1.

It is also worth to know that you can enable hidden calibration for V1 (same calibration when using only V1, but now it is invisible to user):

gestures.enableCNCalib()

Using EyeGesture Engine V1 - Model-Based Approach [not recommended]:

from eyeGestures.utils import VideoCapture
from eyeGestures import EyeGestures_v1

# Initialize gesture engine with RoI parameters
gestures = EyeGestures_v1()

cap = VideoCapture(0)  
ret, frame = cap.read()
calibrate = True
screen_width = 500
screen_height= 500

# Obtain estimations from camera frames
event, cevent = gestures.estimate(
    frame,
    "main",
    calibrate,  # set calibration - switch to False to stop calibration
    screen_width,
    screen_height,
    0, 0, 0.8, 10
)

if event:
  cursor_x, cursor_y = event.point[0], event.point[1]
  fixation = event.fixation
  # calibration_radius: radius for data collection during calibration

Feel free to copy and paste the relevant code snippets for your project.

🔥 Web Demos:

rules of using

If you are building publicly available product, and have no commercial license, please mention us somewhere in your interface.

📇 Find us:

Troubleshooting:

  1. some users report that mediapipe, scikit-learn or opencv is not installing together with eyegestures. To fix it, just install it with pip.

Missing feature or facing a bug?

Create new issue so we can tackle it!

💻 Contributors

💵 Support the project

We will be extremely grateful for your support: it helps to keep server running + fuels my brain with coffee.

Support project on Polar (in exchange we provide access to alphas versions!):

Subscribe on Polar

Star History Chart

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

eyegestures-4.0.0-cp313-cp313-win_amd64.whl (256.4 kB view details)

Uploaded CPython 3.13Windows x86-64

eyegestures-4.0.0-cp313-cp313-win32.whl (215.4 kB view details)

Uploaded CPython 3.13Windows x86

eyegestures-4.0.0-cp313-cp313-manylinux_2_34_x86_64.whl (380.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

eyegestures-4.0.0-cp312-cp312-win_amd64.whl (232.3 kB view details)

Uploaded CPython 3.12Windows x86-64

eyegestures-4.0.0-cp312-cp312-win32.whl (215.4 kB view details)

Uploaded CPython 3.12Windows x86

eyegestures-4.0.0-cp312-cp312-manylinux_2_34_x86_64.whl (380.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

File details

Details for the file eyegestures-4.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for eyegestures-4.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 30e0652541829886bf634b03932ea9723643500b865c9ee85da621a98aef2cbe
MD5 10621a3f8b2f282cd16a81e6eca7b276
BLAKE2b-256 ebe93e8c468c52c01e8d71e66ab1cf3ddd876f84971bf2d47d6141f1b1534954

See more details on using hashes here.

File details

Details for the file eyegestures-4.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: eyegestures-4.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 215.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for eyegestures-4.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e56968c59b4aba43896b172f5c12ab86ce3677b04c78631605dbf9095bbdd52a
MD5 baf412954baf9f86a4c0c5f1fed18f25
BLAKE2b-256 67cb7e1767516be65796711fa152b5015e052d6d1a221440b45a89f031d546cb

See more details on using hashes here.

File details

Details for the file eyegestures-4.0.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for eyegestures-4.0.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 55a4910a8d0ca152af6634fe8c9dc09926e8e60d7fd0e49fa2d4ab90295c075f
MD5 d5a2294edb2bc4e9fa43480297f37745
BLAKE2b-256 718d6ac218be7395805e984dd13154694930b0e8d6444ae7e810db4cdb7a9bcd

See more details on using hashes here.

File details

Details for the file eyegestures-4.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for eyegestures-4.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3101d421fd6a260c226fad85ec5cfd0c02c64b8d236f369ea1bc05207cc7c2de
MD5 b40db6d838fd00970d34254ab9a3c8bc
BLAKE2b-256 bedacbba973648f8ded132aa66d5096934d1c3084aa485cd53c97bdaf994b891

See more details on using hashes here.

File details

Details for the file eyegestures-4.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: eyegestures-4.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 215.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for eyegestures-4.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 61d5c12e4a33a45808087c7ea1557e4e0d35ed98674cc450f2ad160561228f64
MD5 d4e13920553dc6f831060acbf654115f
BLAKE2b-256 ee94817778bb1466a6e108bcd7626c395689a5541f01ac08b21c737feb48fe6c

See more details on using hashes here.

File details

Details for the file eyegestures-4.0.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for eyegestures-4.0.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 982391794874944168643f33710fa5f80a66c69ec84a246383c964a36f7828df
MD5 080d987a706bd6d8df3d1cb5b079ac4b
BLAKE2b-256 a6fd310302484d540a115caf2ff6f09fbd29b3971e01b4d6d79ad921b0425be0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page