get the landmars,positions,features for reconition of the face in the image
Project description
Info
ldm.py 2018-05-25
Author: Zhao Mingming <471106585@qq.com>
Copyright: This module has been placed in the public domain.
version:0.0.6
Classes: - LDM: you can use a function to get landmarks and face feature with no other libs
Functions:
face_feature: the feature of face in the image for face recognition
landmarks: get the landmarks and face in the image
face_rec: return the face similarity of the face in two images
has_same_person: return a int(>0) if there have a same person in two images,otherwise 0
How To Use This Module
example code:
imagepath="closed_eye/9.jfif"
img=io.imread(imagepath)
img1=img
imagepath="closed_eye/14.jfif"
img2=io.imread(imagepath)
ldmer=ldm.LDM()
print img.shape[0]
ldl,facel,txt=ldmer.landmarks(img)
print txt
for ld in ldl:
print 10*'-'
print 'nose:'
print ld['nose']
for face in facel:
print 10*'-'
print 'face:'
print face.top()
print face.left()
print face.width()
print face.height()
print face.bottom()
print face.right()
x,y,w,h=[face.top(),face.left(),face.width(),face.height()]
print x,y,w,h
print "feature:"
ffl=ldmer.face_feature(img,facel)
for ff in ffl:
print help(ff)
print 'ff='+str(ff)
print 'len(ff)='+str(len(ff))
print 'ff[0]='+str(ff[0])
print 'ff[127]='+str(ff[127])
print "face compare:"
print ldmer.face_rec(img1,img2)
print ldmer.has_same_person(img1,img2)
print ldmer.has_same_person(img2,img2)
print "face number:"
print ldmer.face_number(img,facel)
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.6.tar.gz
(3.9 kB
view hashes)
Built Distributions
ldm-0.0.6-py2.7.egg
(7.0 kB
view hashes)
ldm-0.0.6-py2-none-any.whl
(5.4 kB
view hashes)