Skip to content

Instantly share code, notes, and snippets.

@BenjaminPoilve
BenjaminPoilve / eyeTrack.py
Created August 22, 2016 08:45
Fabian Timm eye center location algorithm in python
import operator
import numpy as np
import math
import cv2
from config import config
kGradientThreshold = 10.0
kWeightBlurSize = 5;
maxEyeSize=8;