Last active
July 24, 2022 00:48
Face Detection - Shape Detection API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var image = document.getElementById('image'); | |
// Does the current browser support the API? | |
if (window.FaceDetector) { | |
var faceDetector = new FaceDetector(); | |
faceDetector.detect(image) | |
.then(faces => { | |
console.log(‘Faces found:’, faces.length); | |
// Loop through the results | |
for(var i = 0; i < faces.length; i++) { | |
const face = faces[i].boundingBox; | |
console.log(‘face.width’, face.width); | |
console.log(‘face.height’, face.height); | |
} | |
}).catch((err) => { | |
console.error("Face detection failed " + err); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment