11 Star 84 Fork 42

Gitee 极速下载/compreface

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/exadel-inc/CompreFace
克隆/下载
Face-services-and-plugins.md 6.72 KB
一键复制 编辑 原始数据 按行查看 历史

Face Services and Plugins

CompreFace supports these face services and plugins:

  • Face recognition service (Face identification)
  • Face detection service
  • Face verification service
  • Age detection plugin
  • Gender detection plugin
  • Landmarks detection plugin
  • Calculator plugin
  • Face mask detection plugin
  • Head pose plugin

Services

To use face service you need to create it in an application on UI. The type of service depends on your application needs. Each service has its own REST API context and there is no possibility to change the service type after creation. Here is a short description of each of them:

Face detection

Face detection service is used to detect all faces in the image. It doesn’t recognize faces, just finds them on the image.

Cases of use

The most useful cases include face plugins for face analysis:

  • gather statistics on how your store popular among different genders
  • gather statistics on among what ages your event is popular
  • get landmark information to know where customers look at
  • gather statistics on how many customers in the store
  • recognize if all customers wear masks properly

How to test

  1. On the CompreFace application page, at the bottom of the frame, click Create button.
  2. In the Create Service dialog, from the Type drop-down menu, select DETECTION.
  3. Enter the name of the service you are going to create.
  4. From the list of the services in the Services frame, select the service you created; you can use search field to filter the services.
  5. Click Test button near in the row of the service you want to launch.
  6. On the service page, open or drag-and-drop the picture to analyze.
  7. The service will display the original picture with marks near every face.

Output

Below the picture, you can see the Request processed, and the Response to the request. The Response is the output which CompreFace provides via API.

Example:

Example

Face recognition

Face recognition service is used for face identification. This means that you first need to upload known faces to faces collection and then recognize unknown faces among them. When you upload an unknown face, the service returns the most similar faces to it. Also, face recognition service supports verify endpoint to check if this person from face collection is the correct one.

Cases of use

The possible cases include:

  • when you have photos of employees and want to recognize strangers in the office
  • when you have photos of conference attendees and want to track who was interested in which topics.
  • when you have photos of VIP guests and you want to find them among the crowd very quickly.

How to test

  1. On the CompreFace application page, at the bottom of the frame, click Create button.
  2. In the Create Service dialog, from the Type drop-down menu, select RECOGNITION.
  3. Enter the name of the service you are going to create.
  4. From the list of the services in the Services frame, select the service you created; you can use search field to filter the services.
  5. Click Test button near in the row of the service you want to launch.
  6. On the service page, open or drag-and-drop the picture to analyze.
  7. The service will display the original picture with marks near every face.

Output

Below the picture, you can see the Request processed, and the Response to the request. The Response is the output which CompreFace provides via API.

Example:

image

Face verification

Face verification service is used to check if this person is the correct one. The service compares two faces you send to the rest endpoint and returns their similarity.

Cases of use

The possible cases include:

  • when a customer provides you an ID or driving license and you need to verify if this is him
  • when a user connects his social network account to your application and you want to verify if this is him

How to test

  1. On the CompreFace application page, at the bottom of the frame, click Create button.
  2. In the Create Service dialog, from the Type drop-down menu, select VERIFICATION.
  3. Enter the name of the service you are going to create.
  4. From the list of the services in the Services frame, select the service you created; you can use search field to filter the services.
  5. Click Test button near in the row of the service you want to launch.
  6. On the service page, open or drag-and-drop two pictures to compare their content.
  7. The service will display the original picture with marks near every face.

Output

Below the picture, you can see the Request processed, and the Response to the request. The Response is the output which CompreFace provides via API.

Example:

image

Face plugins

Face plugins could be used with any of the face services. By default, face services return only bounding boxes and similarity if applicable. To add more information in response you can add face plugins in your request. To add a plugin you need to list comma-separated needed plugins in the query face_plugins parameter. This parameter is supported by all face recognition services. Example:

curl  -X POST "http://localhost:8000/api/v1/recognition/recognize?face_plugins=age,gender,landmarks,mask,pose" \
-H "Content-Type: multipart/form-data" \
-H "x-api-key: <faces_recognition_api_key>" \
-F file=<local_file>

This request will recognize faces on the image and return additional information about age, gender, head pose, face mask, and landmarks.

The list of possible plugins:

  • age - returns the supposed range of a person’s age in format [min, max]
  • gender - returns the supposed person’s gender
  • landmarks - returns face landmarks. This plugin is supported by all configurations and returns 5 points of eyes, nose, and mouth
  • calculator - returns face embeddings.
  • pose - returns head pose in format: {"pitch": 0.0,"roll": 0.0,"yaw": 0.0}
  • mask - returns if the person wears a mask. Possible results: without_mask, mask_worn_incorrectly, mask_worn_correctly. Learn more about mask plugin
  • landmarks2d106 - returns face landmarks. This plugin is supported only by the configuration that uses insightface library. It’s not available by default. More information about landmarks here.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/compreface.git
git@gitee.com:mirrors/compreface.git
mirrors
compreface
compreface
master

搜索帮助