Introduction to facerec

An Interface for Face Recognition in R

The facerec package provides an interface to the Kairos Face Recognition API. The API detects faces in images and returns estimates for demographics like gender, ethnicity and age. It is also capable of recognizing and verifying humans across several images.

How to Install

To install the CRAN version of facerec use install.packages('facerec').

You can also download and install the latest development version of the app by running devtools::install_github('methodds/facerec'). For Windows users installing from github requires proper setup of Rtools, for which a tutorial is available here.

How to Use

Authentification

After loading facerec you first need to initiate your authentification credentials. Kairos offers a free plan for API access. After signing up, you will receive an application id and an application key. Both credentials need to be set as environment variables before using the initialization function facerec_init():

You only need to call facerec_init() once after loading the package. In order to avoid entering your credentials for each session, you can permanently store them in your .Renviron. I recommend usethis::edit_r_environ() to find and edit your environment file.

Face Recognition

The Kairos API accepts image of file type JPG, PNG, or BMP. Images can be passed to several facerec functions, either as an url string or a local image prepared with prep_image(). In the following example, detect() is used to recognize the face of the Star Wars character Finn:

The function returns a dataframe with annotations for the recognized face in the input image. Variables include positional features of recognized faces, such as x and y coordinates for eyes. Moreover, demographic attributes like gender, ethnicity and age are available.

Features can be visualized with the packages magick and ggplot2:

Kairos has some recommendations to improve the quality of its recognition service, but in general, the API also works with multiple faces inside an image:

Besides annotating faces in single images, it is possible to permanently store face recognition data with the Kairos API. This allows to assign multiple images to subject ids and estimates about whether faces from different images belong to the same subjects:

The function recognize() returns a dataframe including the probability of a match in the column confidence.