├── README.md ├── dist ├── face-api.js ├── face-api.js.map └── face-api.min.js ├── docs ├── assets │ ├── css │ │ ├── main.css │ │ └── main.css.map │ ├── images │ │ ├── icons.png │ │ ├── icons@2x.png │ │ ├── widgets.png │ │ └── widgets@2x.png │ └── js │ │ ├── main.js │ │ └── search.js ├── classes │ ├── boundingbox.html │ ├── box.html │ ├── boxwithtext.html │ ├── composabletask.html │ ├── computeallfacedescriptorstask.html │ ├── computefacedescriptorstaskbase.html │ ├── computesinglefacedescriptortask.html │ ├── detectallfacelandmarkstask.html │ ├── detectallfacestask.html │ ├── detectfacelandmarkstaskbase.html │ ├── detectfacestaskbase.html │ ├── detectsinglefacelandmarkstask.html │ ├── detectsinglefacetask.html │ ├── dimensions.html │ ├── facedetection.html │ ├── facedetectionnet.html │ ├── facedetectionwithlandmarks.html │ ├── facelandmark68net.html │ ├── facelandmark68tinynet.html │ ├── facelandmarknet.html │ ├── facelandmarks.html │ ├── facelandmarks5.html │ ├── facelandmarks68.html │ ├── facematch.html │ ├── facematcher.html │ ├── facerecognitionnet.html │ ├── fullfacedescription.html │ ├── labeledbox.html │ ├── labeledfacedescriptors.html │ ├── mtcnn.html │ ├── mtcnnoptions.html │ ├── netinput.html │ ├── neuralnetwork.html │ ├── objectdetection.html │ ├── point.html │ ├── predictedbox.html │ ├── rect.html │ ├── ssdmobilenetv1.html │ ├── ssdmobilenetv1options.html │ ├── tinyfacedetector.html │ ├── tinyfacedetectoroptions.html │ ├── tinyyolov2.html │ └── tinyyolov2options.html ├── enums │ └── tinyyolov2sizetype.html ├── globals.html └── interfaces │ ├── iboundingbox.html │ ├── idimensions.html │ ├── ifacedetecion.html │ ├── ifacedetectionwithlandmarks.html │ ├── ifacelandmarks.html │ ├── ifacematch.html │ ├── ifullfacedescription.html │ ├── imtcnnoptions.html │ ├── ipoint.html │ ├── irect.html │ ├── issdmobilenetv1options.html │ ├── itinyfacedetectoroptions.html │ └── itinyyolov2options.html ├── models ├── face_landmark_68_model-shard1 ├── face_landmark_68_model-weights_manifest.json ├── face_landmark_68_tiny_model-shard1 ├── face_landmark_68_tiny_model-weights_manifest.json ├── face_recognition_model-shard1 ├── face_recognition_model-shard2 ├── face_recognition_model-weights_manifest.json ├── mtcnn_model-shard1 ├── mtcnn_model-weights_manifest.json ├── ssd_mobilenetv1_model-shard1 ├── ssd_mobilenetv1_model-shard2 ├── ssd_mobilenetv1_model-weights_manifest.json ├── tiny_face_detector_model-shard1 └── tiny_face_detector_model-weights_manifest.json ├── package-lock.json ├── package.json ├── public ├── github_link_icon.png ├── images │ ├── amy │ │ ├── amy1.png │ │ ├── amy2.png │ │ ├── amy3.png │ │ ├── amy4.png │ │ └── amy5.png │ ├── bbt1.jpg │ ├── bbt2.jpg │ ├── bbt3.jpg │ ├── bbt4.jpg │ ├── bbt5.jpg │ ├── bernadette │ │ ├── bernadette1.png │ │ ├── bernadette2.png │ │ ├── bernadette3.png │ │ ├── bernadette4.png │ │ └── bernadette5.png │ ├── howard │ │ ├── howard1.png │ │ ├── howard2.png │ │ ├── howard3.png │ │ ├── howard4.png │ │ └── howard5.png │ ├── leonard │ │ ├── leonard1.png │ │ ├── leonard2.png │ │ ├── leonard3.png │ │ ├── leonard4.png │ │ └── leonard5.png │ ├── penny │ │ ├── penny1.png │ │ ├── penny2.png │ │ ├── penny3.png │ │ ├── penny4.png │ │ └── penny5.png │ ├── raj │ │ ├── raj1.png │ │ ├── raj2.png │ │ ├── raj3.png │ │ ├── raj4.png │ │ └── raj5.png │ ├── sheldon │ │ ├── sheldon1.png │ │ ├── sheldon2.png │ │ ├── sheldon3.png │ │ ├── sheldon4.png │ │ └── sheldon5.png │ ├── stuart │ │ ├── stuart1.png │ │ ├── stuart2.png │ │ ├── stuart3.png │ │ ├── stuart4.png │ │ └── stuart5.png │ ├── 安悦溪1.jpg │ ├── 安悦溪2.jpg │ ├── 张杰1.jpg │ ├── 张杰2.jpg │ ├── 张杰3.jpg │ └── 张杰4.jpg ├── js │ ├── bbt.js │ ├── commons.js │ ├── drawing.js │ ├── faceDetectionControls.js │ ├── imageSelectionControls.js │ ├── jquery-2.1.1.min.js │ └── materialize.min.js ├── materialize.css ├── media │ └── bbt.mp4 ├── menu_icon.png └── styles.css ├── server.js └── views ├── batchFaceLandmarks.html ├── batchFaceRecognition.html ├── bbtFaceLandmarkDetection.html ├── bbtFaceMatching.html ├── bbtFaceRecognition.html ├── bbtFaceSimilarity.html ├── faceAndLandmarkDetection.html ├── faceExtraction.html ├── faceRecognition.html ├── simplifyFaceComparison.html ├── simplifyFaceComparisonMany.html ├── simplifyWebRTCFaceTracking.html ├── videoFaceTracking.html └── webcamFaceTracking.html /README.md: -------------------------------------------------------------------------------- 1 | # Face-api 使用案例 face-api-demo-browser 2 | 3 | ## 项目安装 Project setup 4 | ``` 5 | npm install 6 | ``` 7 | 8 | ### 项目启动 Compiles and hot-reloads for development 9 | ``` 10 | node server.js 11 | ``` 12 | -------------------------------------------------------------------------------- /docs/assets/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsMask/face-api-demo/7258119748c3efa7a428c5bfe8f254625b4b0c9b/docs/assets/images/icons.png -------------------------------------------------------------------------------- /docs/assets/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsMask/face-api-demo/7258119748c3efa7a428c5bfe8f254625b4b0c9b/docs/assets/images/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/images/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsMask/face-api-demo/7258119748c3efa7a428c5bfe8f254625b4b0c9b/docs/assets/images/widgets.png -------------------------------------------------------------------------------- /docs/assets/images/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsMask/face-api-demo/7258119748c3efa7a428c5bfe8f254625b4b0c9b/docs/assets/images/widgets@2x.png -------------------------------------------------------------------------------- /docs/interfaces/idimensions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Generated using TypeDoc
208 |Generated using TypeDoc
208 |Generated using TypeDoc
222 |Generated using TypeDoc
210 |Generated using TypeDoc
208 |Generated using TypeDoc
208 |Generated using TypeDoc
202 |Generated using TypeDoc
209 |Generated using TypeDoc
202 |26 | 27 | 28 |
29 |