# Face Recognition

## Introduction

Face recognition help you to matching a human face from an image.&#x20;

## Ability

* Recognize face(s) in all orientations
* Automatically detect and crop face(s) in the image

## Limitations

The following is a list of conditions that can reduce performance of the model to recognize face.

* Blurry image
* Noisy image
* Poorly lightning condition or light reflection (often flashlight)
* Partially hidden or obstructed faces

## Under the Hood

Kredibel is using **deep learning** to perform face recognition task. Our model achieve near **99.7%** accuracy in the labeled face in the wild (LFW) dataset. Below is an explanation of how our Face Detection system works.

### 1. Upload Image

Users can upload a **handheld** or **non-handheld** identity card image. Our system can handle both.&#x20;

### 2. Orientation estimation

Our system will estimate image orientation and normalize it. That's why our system can recognize faces in all orientations.

### 3. Face Detection

Our system will **detect** all face(s) in the image.

### 4. Cropping

Our system will automatically **crop** the face area detected by face detection model.

### 5. Face Recognition

Our system will **recognize** face(s) by extracting face unique features.

### 6. Face Comparison

We **compare** face unique features of the given image.

## Endpoints

| Method | URL                            |
| ------ | ------------------------------ |
| POST   | `$vision/v1/face/verification` |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kredibel.io/api-references/face-recognition.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
