> For the complete documentation index, see [llms.txt](https://docs.kredibel.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kredibel.io/api-references/face-recognition.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
