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.
You can install the package via npm:
npm install age-gender-recognition
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.
This project is licensed under the MIT License - see the LICENSE file for details.