Skip to content

PythonSyntax1/Eye-Health-Tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Eye-Health-Tracker

Python application that tracks a user's blink frequency through their web-cam, and sends an email every hour that details the user's blink frequency.

  • Built with OpenCV, combined with DLib's facial landmark libraries

Notes:

  • Emailing feature can be enabled by modifying code. This is to mitigate any possible security concerns.

  • To enable emailing feature, enter report.py and make the follow edits:

      #Enter email server here
     server = smtplib.SMTP('smtp.gmail.com', 587)
       server.starttls()
       # Enter email username and password here
       server.login("email", "pass")
       healthMessage = self.generateHealthMessage()
    #Enter sending email, and recieving email respectively. 
    server.sendmail("email", "email", Message)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages