Metadata-Version: 1.0
Name: ldm
Version: 0.0.3
Summary: get the landmars 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: # ldm 
        version:0.0.3
        ldm=landmarks
        you can usr a function to get landmarks with no other libs
        like this:
        ```
        # pip install ldm
        import  ldm
        from skimage import io
        
        imagepath="closed_eye/10.jfif"
        ldmer=ldm.LDM()
        img=io.imread(imagepath)
        ldl,txt=ldmer.landmarks(img)
        print txt
        for ld in ldl:
            print ld['nose']
        
        ```  
        20180524
        anjiang
        
Platform: any
