get the landmars of the face in the image
Project 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
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ldm-0.0.3.tar.gz
(2.0 kB
view hashes)
Built Distribution
ldm-0.0.3-py2.7.egg
(3.6 kB
view hashes)