Metadata-Version: 1.0
Name: ai-eye
Version: 0.0.2
Summary: get the eye state from the landmarks of the face in the image
Home-page: http://www.zhaomingming.cn
Author: zhaomingming
Author-email: 13271929138@163.com
License: MIT
Description-Content-Type: text/markdown
Description: # ai_eye 
        version:0.0.2
        ai_eye can tell u the eye's open degree from the landmarks
        like this:
        ```
        # pip install ldm
        from ldm import landmarks
        # pip install ai_eye
        from ai_eye import has_closed_eye
        from skimage import io
        
        imagepath="closed_eye/10.jfif"
        
        img=io.imread(imagepath)
        ldl,txt=landmarks(img)
        print txt
        for ld in ldl:
            print has_closed_eye(ld)
        
        ```  
        20180524
        anjiang
        
Platform: any
