You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+15-12
Original file line number
Diff line number
Diff line change
@@ -1,34 +1,37 @@
1
1
# face-detector
2
-
A simple NPM module to detect recognizable faces in an image url or file(path). Opencv is a requirement.
2
+
A simple NPM module to detect faces. The module will return the number of recognizable faces from a given image URL or path.
3
3
4
-
**Usage**
4
+
Opencv is required.
5
5
6
-
Just import this module and use a function to detect faces from an image url or image path. The module will return the number of recognizable faces in a given image.
6
+
# Usage
7
7
8
-
```npm install face-detector```
8
+
**Install the Module**
9
9
10
+
```
11
+
npm install face-detector
12
+
```
10
13
11
-
**Using a URL**
14
+
**Example Using an URL**
12
15
13
-
```
14
-
const faceDetect = require('face-detector')
16
+
```javascript
17
+
constface=require('face-detector')
15
18
16
19
var imageUrl ='https://avatars2.githubusercontent.com/u/5693297?v=3&s=400'
0 commit comments