Skip to content

Instantly share code, notes, and snippets.

@edfungus
edfungus / pupil.py
Last active February 17, 2025 12:44
Pupil Detection with Python and OpenCV
#Identify pupils. Based on beta 1
import numpy as np
import cv2
import time
cap = cv2.VideoCapture(0) #640,480
w = 640
h = 480