Metadata-Version: 1.1
Name: pyFaceTrace
Version: 3.1
Summary: easy Face Recognition fo python
Home-page: https://github.com/funny4875/pyFaceTrace.git
Author: KuoYuan Li
Author-email: funny4875@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: 
            # 比對目前webcam擷取到的人臉和指定影像檔案並計算它們之間的距離
            im = captureImageFromCam()
            VTest = getFeatureVector(im)
            Vtrain = loadFeatureFromPic('train\李國源.jpg')
            print(dist(VTest,Vtrain))
            
            #載入train資料夾中所有jpg檔之特徵及tag
            #並直接預測目前webcam擷取到的人臉對應的TAG
            loadDB(folder='train')
            result = predictFromDB(VTest)
            print(result)
            
            #vedio Demo
            loadDB(folder='train')
            predictCam()
        
Keywords: face recognition,face trace,face feature extraction
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
