- Learning Microsoft Cognitive Services
- Leif Larsen
- 319字
- 2021-08-13 15:40:18
Retrieving more information from the detected faces
In Chapter 1, Getting Started with Microsoft Cognitive Services, we learned the very basic form of face detection. In the example, we retrieved a Face
array. This contained information on all faces that were found in an image. In that specific example, we obtained information about the face rectangle, face ID, face landmarks, and age.
When calling the API, there are four request parameters, as shown in the following table:
Parameter Descriptionimage
- The image in which to search for faces. It will either be in the form of a URL or binary data.
- Supported formats are JPEG, PNG, GIF, and BMP.
- The maximum file size is 4 MB.
- The size of detectable faces is between 36 x 36 pixels and 4096 x 4096 pixels.
return FaceId
(optional) Boolean value. This specifies whether the response should include the face ID or not.return FaceLandmarks
(optional) Boolean value. This specifies whether the response should includeFaceLandmarks
in detected faces.return FaceAttributes
(optional)
- String value. This is a comma-separated string containing all face attributes that are to be analyzed.
- Supported attributes are age, gender, head pose, smile, facial hair, emotion, and glasses.
- These attributes are still experimental, and should be treated as such.
If a face is successfully discovered, it will expire in 24 hours. When calling other parts of the Face API, you are often required to have a face ID as an input. In those cases, we need to detect a face first, followed by the call to the API we wish to use, using the detected face as a parameter.
Using this knowledge, I challenge you to play around with the example in Chapter 1, Getting Started with Microsoft Cognitive Services. Draw a rectangle around the face. Mark the eyes in the image.
- Learning AngularJS Animations
- SDL Game Development
- Deep Learning with PyTorch
- Getting Started with Qt 5
- 3ds Max Speed Modeling for 3D Artists
- Apple Motion 5 Cookbook
- R Deep Learning Essentials
- 單片機原理及應用:基于C51+Proteus仿真
- Blender Game Engine:Beginner's Guide
- Istio實戰指南
- Arduino項目案例:游戲開發
- FPGA實戰訓練精粹
- 微型計算機原理及應用教程(第2版)
- CPU設計實戰:LoongArch版
- Hands-On Game Development with WebAssembly