FaceDetector.DetectFacesAsync 方法

定义

重载

DetectFacesAsync(SoftwareBitmap)

在提供的 SoftwareBitmap 中异步检测人脸。

DetectFacesAsync(SoftwareBitmap, BitmapBounds)

异步检测指定搜索区域内提供的 SoftwareBitmap 中的人脸。

DetectFacesAsync(SoftwareBitmap)

在提供的 SoftwareBitmap 中异步检测人脸。

public:
 virtual IAsyncOperation<IVector<DetectedFace ^> ^> ^ DetectFacesAsync(SoftwareBitmap ^ image) = DetectFacesAsync;
/// [Windows.Foundation.Metadata.Overload("DetectFacesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVector<DetectedFace>> DetectFacesAsync(SoftwareBitmap const& image);
[Windows.Foundation.Metadata.Overload("DetectFacesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IList<DetectedFace>> DetectFacesAsync(SoftwareBitmap image);
function detectFacesAsync(image)
Public Function DetectFacesAsync (image As SoftwareBitmap) As IAsyncOperation(Of IList(Of DetectedFace))

参数

image
SoftwareBitmap

要为人脸检测处理的图像数据。

返回

一个异步操作,在成功完成时返回 DetectedFace 对象列表。

属性

注解

对于此方法及其重载,提供的 SoftwareBitmap 必须采用受支持的像素格式。 使用 GetSupportedBitmapPixelFormats 检索当前设备支持的像素格式列表。 使用 IsBitmapPixelFormatSupported 测试给定像素格式是否受支持。

另请参阅

适用于

DetectFacesAsync(SoftwareBitmap, BitmapBounds)

异步检测指定搜索区域内提供的 SoftwareBitmap 中的人脸。

public:
 virtual IAsyncOperation<IVector<DetectedFace ^> ^> ^ DetectFacesAsync(SoftwareBitmap ^ image, BitmapBounds searchArea) = DetectFacesAsync;
/// [Windows.Foundation.Metadata.Overload("DetectFacesWithSearchAreaAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVector<DetectedFace>> DetectFacesAsync(SoftwareBitmap const& image, BitmapBounds const& searchArea);
[Windows.Foundation.Metadata.Overload("DetectFacesWithSearchAreaAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IList<DetectedFace>> DetectFacesAsync(SoftwareBitmap image, BitmapBounds searchArea);
function detectFacesAsync(image, searchArea)
Public Function DetectFacesAsync (image As SoftwareBitmap, searchArea As BitmapBounds) As IAsyncOperation(Of IList(Of DetectedFace))

参数

image
SoftwareBitmap

要为人脸检测处理的图像数据。

searchArea
BitmapBounds

将在其中执行人脸检测的 SoftwareBitmap 中的边界。

返回

一个异步操作,在成功完成时返回 DetectedFace 对象列表。

属性

另请参阅

适用于