Metadata-Version: 1.0
Name: ai_eye
Version: 0.0.5
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.py 2018-05-25 
        Author: Zhao Mingming <471106585@qq.com>
        Copyright: This module has been placed in the public domain.
        version:0.0.5
        
        Functions:
        
        - `has_closed_eye`: eye's open degree
        
        
        How To Use This Module
        ======================
        
        
        1. when u use pip install ldm==0.0.2
        
        """
        from ldm import landmarks
        from ai_eye import has_closed_eye
        from skimage import io
        
        imagepath="closed_eye/10.jfif"
        
        img=io.imread(imagepath)
        ldl,helptxt=landmarks(img)
        print helptxt
        for ld in ldl:
        print has_closed_eye(ld)
        """
        
        2. when u use  pip install ldm==0.0.4
        """
        import  ldm
        from ai_eye import has_closed_eye
        from skimage import io
        
        imagepath="closed_eye/10.jfif"
        ldmer=ldm.LDM()
        img=io.imread(imagepath)
        ldl,facel,helptxt=ldmer.landmarks(img)
        print helptxt
        for ld in ldl:
        print has_closed_eye(ld)
        print 10*'-'
        print 'nose:'
        print ld['nose']
        for face in facel:
        print 10*'-'
        print 'face:'
        print face
        """
        
Platform: any
