Skip to content

Commit 73810f5

Browse files
initial commitinitial commit
initial commit
authored and
initial commit
committed
function name change and readme update
1 parent a8ad515 commit 73810f5

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

README.md

+15-12
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,37 @@
11
# 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.
33

4-
**Usage**
4+
Opencv is required.
55

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
77

8-
```npm install face-detector```
8+
**Install the Module**
99

10+
```
11+
npm install face-detector
12+
```
1013

11-
**Using a URL**
14+
**Example Using an URL**
1215

13-
```
14-
const faceDetect = require('face-detector')
16+
```javascript
17+
const face = require('face-detector')
1518

1619
var imageUrl = 'https://avatars2.githubusercontent.com/u/5693297?v=3&s=400'
1720

18-
faceDetect.check(imageUrl,function(result){
21+
face.detect(imageUrl,function(result){
1922
console.log(result)
2023

2124
})
2225
```
2326

24-
**Using a path**
27+
**Example Using a Path**
2528

26-
```
27-
const faceDetect = require('face-detector')
29+
```javascript
30+
const face = require('face-detector')
2831

2932
var imagePath = './image.jpg'
3033

31-
faceDetect.check(imagePath,function(result){
34+
face.detect(imagePath,function(result){
3235
console.log(result)
3336

3437
})

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const axios = require('axios')
22
const fs = require('fs')
33
const cv = require('opencv')
44

5-
exports.check = function(path, cb) {
5+
exports.detect = function(path, cb) {
66

77
if (!/^(f|ht)tps?:\/\//i.test(path)) {
88
cv.readImage(path, function(err, im) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "face-detector",
3-
"version": "1.0.0",
3+
"version": "1.0.3",
44
"description": "A simple module to detect recognizable faces in an image url or file(path)",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)