Merge pull request #109 from justadudewhohacks/v-0_15
v0.15
Showing
examples/public/commons.js
deleted
100644 → 0
examples/public/js/bbt.js
0 → 100644
examples/public/js/commons.js
0 → 100644
examples/public/js/drawing.js
0 → 100644
examples/public/js/faceDetectionControls.js
0 → 100644
examples/public/js/imageSelectionControls.js
0 → 100644
examples/views/bbtFaceMatching.html
0 → 100644
examples/views/faceAlignment.html
deleted
100644 → 0
examples/views/faceAndLandmarkDetection.html
0 → 100644
examples/views/faceDetection.html
deleted
100644 → 0
examples/views/faceExtraction.html
0 → 100644
examples/views/videoFaceTracking.html
0 → 100644
examples/views/webcamFaceTracking.html
0 → 100644
| ... | ... | @@ -11,7 +11,14 @@ |
| "tsc": "tsc", | ||
| "tsc-es6": "tsc --p tsconfig.es6.json", | ||
| "build": "npm run rollup && npm run rollup-min && npm run tsc && npm run tsc-es6", | ||
| "test": "karma start" | ||
| "test": "karma start", | ||
| "test-facelandmarknets": "set UUT=faceLandmarkNet&& karma start", | ||
| "test-facerecognitionnet": "set UUT=faceRecognitionNet&& karma start", | ||
| "test-ssdmobilenetv1": "set UUT=ssdMobilenetv1&& karma start", | ||
| "test-tinyfacedetector": "set UUT=tinyFaceDetector&& karma start", | ||
| "test-mtcnn": "set UUT=mtcnn&& karma start", | ||
| "test-tinyyolov2": "set UUT=tinyYolov2&& karma start", | ||
| "docs": "typedoc --options ./typedoc.config.js ./src" | ||
| }, | ||
| "keywords": [ | ||
| "face", | ||
| ... | ... | @@ -24,8 +31,8 @@ |
| "license": "MIT", | ||
| "dependencies": { | ||
| "@tensorflow/tfjs-core": "^0.13.2", | ||
| "tfjs-image-recognition-base": "^0.1.2", | ||
| "tfjs-tiny-yolov2": "^0.1.3", | ||
| "tfjs-image-recognition-base": "^0.1.3", | ||
| "tfjs-tiny-yolov2": "^0.2.1", | ||
| "tslib": "^1.9.3" | ||
| }, | ||
| "devDependencies": { | ||
| ... | ... |
src/allFacesFactory.ts
deleted
100644 → 0
src/classes/FaceDetectionWithLandmarks.ts
0 → 100644
src/classes/FaceMatch.ts
0 → 100644
src/classes/LabeledFaceDescriptors.ts
0 → 100644
src/faceDetectionNet/index.ts
deleted
100644 → 0
src/globalApi.ts
deleted
100644 → 0
src/globalApi/ComposableTask.ts
0 → 100644
src/globalApi/ComputeFaceDescriptorsTasks.ts
0 → 100644
src/globalApi/DetectFaceLandmarksTasks.ts
0 → 100644
src/globalApi/DetectFacesTasks.ts
0 → 100644
src/globalApi/FaceMatcher.ts
0 → 100644
src/globalApi/allFaces.ts
0 → 100644
src/globalApi/index.ts
0 → 100644
src/globalApi/nets.ts
0 → 100644
src/globalApi/types.ts
0 → 100644
src/mtcnn/MtcnnOptions.ts
0 → 100644
src/ssdMobilenetv1/SsdMobilenetv1Options.ts
0 → 100644
src/ssdMobilenetv1/index.ts
0 → 100644
src/tinyFaceDetector/TinyFaceDetector.ts
0 → 100644
src/tinyFaceDetector/const.ts
0 → 100644
src/tinyFaceDetector/index.ts
0 → 100644
test/expectFaceDetections.ts
0 → 100644
test/expectFaceDetectionsWithLandmarks.ts
0 → 100644
test/expectFullFaceDescriptions.ts
0 → 100644
test/tests/e2e/allFacesMtcnn.test.ts
deleted
100644 → 0
test/tests/e2e/expectedResults.ts
deleted
100644 → 0
test/tests/e2e/tinyYolov2.test.ts
deleted
100644 → 0
test/tests/mtcnn/expectMtcnnResults.ts
0 → 100644
test/tests/mtcnn/mtcnn.test.ts
0 → 100644
test/tests/ssdMobilenetv1/expectedBoxes.ts
0 → 100644
test/tests/tinyFaceDetector/expectedBoxes.ts
0 → 100644
test/tests/tinyYolov2/expectedBoxes.ts
0 → 100644
typedoc.config.js
0 → 100644
weights/tiny_face_detector_model-shard1
0 → 100644
File added
File deleted
Please
register
or
sign in
to comment