Metadata-Version: 2.4
Name: hand-mouse
Version: 0.1.0
Summary: Control your computer with hand gestures or eye gaze (experimental).
Home-page: https://github.com/jusufrancis/hand-mouse
Author: FRANCIS JUSU
Author-email: FRANCIS JUSU <jusufrancis08@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Francis589png/HAND-MOUSE
Project-URL: Source, https://github.com/Francis589-png/HAND-MOUSE
Project-URL: Issues, https://github.com/Francis589-png/HAND-MOUSE/issues
Keywords: computer-vision,accessibility,hands,eye-tracking,mediapipe
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mediapipe
Requires-Dist: opencv-python
Requires-Dist: pyautogui
Requires-Dist: numpy
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# hand_mouse

Control your computer with hand/eye tracking using MediaPipe and OpenCV.

Quick example (eye tracking):

```py
from hand_mouse import EyeTracker, move_cursor, click
import pyautogui

et = EyeTracker()
frame, results = et.get_frame()
# see examples/eye_control_demo.py for a runnable demo
```
