age-gender-recognition
v1.0.2
Published
A JS library that detects the age and gender of a face image
Downloads
10
Maintainers
Readme
Face Age & Gender Detection
This a Node.js package that utilizes the FacialAge API to determine the gender and approximate age of a person's face from an image.
Installation
You can install the package via npm:
npm install age-gender-recognition
Usage
To use this package, follow these steps:
- Import the package into your Node.js application:
const genderage = require('age-gender-recognition');
- Call the
genderage
function with the ImageStream you want to analyze:
const imagestream = fs.createReadStream('your-image.jpg');
genderage(imagestream)
.then(result => {
console.log('Gender:', result.gender);
console.log('Age:', result.age);
})
.catch(error => {
console.error('Error:', error.message);
});
Replace 'your-image.jpg'
with the image you want to analyze.
- The function will return an object containing the detected gender and age of the face in the image.
License
This project is licensed under the MIT License - see the LICENSE file for details.