Face Detection
// read image data
var imageData = File.ReadAllBytes(imagePath);
// capture face samples
var faceSamples = await service.DetectAsync(imageData);
Face detection is used to detect faces on an image and their characteristics such as position on image, eyes position, face rotation, and face landmarks.