Subscribe

Javascript native face detector API

✍️

Natively detecting faces from an image in JavaScript

30 Apr, 2021 · 4 min read

As we now looked at the barcode detector API, I want to introduce you to the face detection API.

This is not yet publicly available, unlike the barcode one, but we can enable it in Chrome by enabling a flag.

Open Chrome, and type the following address: chrome://flags, in there enable the #enable-experimental-web-platform-features.

Enabling experimental web flag

Now we should be able to use this face detection as well.

The result for today will be to detect faces in a picture, as seen in the image below.

JavaScript face detection

Using the Face Detector API

In general use, the face detector is pretty straightforward.

We can create a new detector like this:

const faceDetector = new FaceDetector();

// Pass options:
const faceDetector = new FaceDetector({
  maxDetectedFaces: 5,
  fastMode: false,
});

As you can see, we can pass an optional argument, where we can limit the number of faces being found. And we can turn the fast mode on or off. FastMode on means it will focus on speed over accuracy.

The next part is simply calling the detect function and passing an image or video source.

try {
  const faces = await faceDetector.detect(image);
  faces.forEach((face) => doSomething(face));
} catch (e) {
  console.error('Face detection failed:', e);
}

Making a face detection demo

Let’s create our demo. We will use a fixed image for the demo, so let’s set up a photo with some people in it.

<img
  src="https://images.unsplash.com/photo-1531545514256-b1400bc00f31?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1567&q=80"
  crossorigin
  alt="Group of people"
/>

Then we can make a window onload function to wait till everything is loaded.

window.onload = () => {
  detect();
};

Here we call the detect function. We will be making this function asynchronous.

async function detect() {
  const image = document.querySelector('img');
  const faceDetector = new FaceDetector({ fastMode: true });

  try {
    const faces = await faceDetector.detect(image);
    faces.forEach((face) => {
      console.log(face);
    });
  } catch (e) {
    console.error('Face detection failed:', e);
  }
}

The function takes the image we set at hand and will call the face detector in fast mode.

Then we can detect faces on that image and loop through each image.

A response of an image looks like this:

  • boundingBox: The size and position of the box the face fits
  • landmarks: Elements like the eye and mouth of a person

So in our example, we get four faces, which is correct. Let’s add some boxes over the faces to see what we are looking at!

First, let’s wrap our image in a relative holder.

<div id="holder">
  <img
    src="https://images.unsplash.com/photo-1531545514256-b1400bc00f31?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1567&q=80"
    crossorigin
    alt="Group of people"
  />
</div>

Now we can make the holder a relative element and the image absolutely positioned.

img {
  position: absolute;
}
#holder {
  position: relative;
}

And in our detection, we can now grab each face and get the width, height, top, and left values.

const faces = await faceDetector.detect(image);
faces.forEach((face) => {
  const { top, left, width, height } = face.boundingBox;
  const faceDiv = document.createElement('div');
  faceDiv.className = 'face';
  Object.assign(faceDiv.style, {
    width: `${width}px`,
    height: `${height}px`,
    left: `${left}px`,
    top: `${top}px`,
  });
  holder.appendChild(faceDiv);
});

We then create a new div element with the className face and set the styles for this div. We then add it to our holder div.

Let’s quickly add some basic styles for our face div.

.face {
  position: absolute;
  border: 2px solid yellow;
}

If you enabled the flag, you should be able to try out the following Codepen.

See the Pen Javascript native face detector API by Chris Bongers (@rebelchris) on CodePen.

And that’s it. We have now done some basic face detection using a native API! I’ll leave it up to you to get the eyes and mouth pinned!

Browser support

UNFORTUNATELY, this API is not publicly available, so browser support can’t be provided at this stage. However, it is a very cool one to look out for!

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Removing all vowels with JavaScript

3 Dec, 2022 · 2 min read

Removing all vowels with JavaScript

10 games to learn JavaScript

2 Dec, 2022 · 3 min read

10 games to learn JavaScript

Join 2099 devs and subscribe to my newsletter