├── .gitignore ├── Eye Tracking.py ├── README.md ├── pyvenv.cfg ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | # created by virtualenv automatically 2 | * 3 | -------------------------------------------------------------------------------- /Eye Tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsraaMeslam/-Real-Time-Eye-Tracking-and-Position-Estimation-Using-OpenCV-and-MediaPipe-/HEAD/Eye Tracking.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsraaMeslam/-Real-Time-Eye-Tracking-and-Position-Estimation-Using-OpenCV-and-MediaPipe-/HEAD/README.md -------------------------------------------------------------------------------- /pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsraaMeslam/-Real-Time-Eye-Tracking-and-Position-Estimation-Using-OpenCV-and-MediaPipe-/HEAD/pyvenv.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.24.2 2 | opencv-python==4.8.0.76 3 | mediapipe==0.10.0 4 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EsraaMeslam/-Real-Time-Eye-Tracking-and-Position-Estimation-Using-OpenCV-and-MediaPipe-/HEAD/utils.py --------------------------------------------------------------------------------