I am not sure but you could try to use the following strategy. I have used a similar kind of strategy before to find out something else.
- Find out the center of the eyes.
- blur your image and apply canny edge detector.
- Find out the contours in your images obtained through step 2 (Edge image).
- Check the % of white color in each and every contour by calculating a simple histogram.
- Keep only those contours where the % of white color is quite high.
- then check the distance between the center of eyes and the center of each white contour (because there could be some other white contours also in your image e.g. White cloth, paper etc.)
- if the distance between the center of eyes and the center of white contour is less than some threshold value, keep it and discard rest of the contours.
- Draw an outerline across the remaining contours (which should be 2, one for each eye).
I am not sure if the above mentioned technique would work in your case but you can give it a try as it is not too hard.
PS: The things which i have mentioned about blurring, Canny, Countour ...you can have a look at the somehow similar SO Post.