A simple module to detect recognizable faces in an image url or file(path)
npm install face-detectorOpencv is required.
Install the Module
```
npm install face-detector
Example Using an URL
`javascript
const face = require('face-detector')
var imageUrl = 'https://avatars2.githubusercontent.com/u/5693297?v=3&s=400'
face.detect(imageUrl,function(result){
console.log(result)
})
`
Example Using a Path
`javascript
const face = require('face-detector')
var imagePath = './image.jpg'
face.detect(imagePath,function(result){
console.log(result)
})
``