Skip to content

Commit a62fed4

Browse files
committed
v1 - first commit
0 parents  commit a62fed4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+29216
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"printWidth": 120,
3+
"singleQuote": true,
4+
"tabWidth": 4,
5+
"useTabs": true,
6+
"trailingComma": "none",
7+
"arrowParens": "avoid"
8+
}

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Face Detection and Recognition
2+
3+
Face detection and recognition project using faceapi with reactjs
4+
5+
### Features
6+
7+
- Makes face detection.
8+
- Estimate the age, emotion and gender of detected faces.
9+
- Makes face recognition.
10+
- To promote faces, open a folder with the name of the person under the public folder and add 4 pngs.
11+
12+
### `npm run start`
13+
14+
Runs the app in the development mode.\
15+
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
16+
17+
## Props
18+
19+
| Name | Type | Description |
20+
| --- | --- | --- |
21+
| mirrored | Boolean | Shows camera preview mirrored |
22+
| showFeatures | Boolean | Shows features from faceapi in preview. |
23+
| catchImages | Boolean | Turns on the photo taking feature. |
24+
25+
26+
### Packages Used
27+
28+
[face-api.js](https://www.npmjs.com/package/face-api.js),
29+
[react-webcam](https://www.npmjs.com/package/react-webcam),
30+
[tailwindcss](https://www.npmjs.com/package/tailwindcss)
31+
32+
### Authors
33+
- [@azizsenturk](https:///azizsenturk.com)

jsconfig.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "src",
4+
"target": "es6"
5+
},
6+
"include": ["src"]
7+
}

0 commit comments

Comments
 (0)