共用方式為


FaceTracker.ProcessNextFrameAsync(VideoFrame) 方法

定義

以非同步方式處理 VideoFrame 以進行臉部偵測。

public:
 virtual IAsyncOperation<IVector<DetectedFace ^> ^> ^ ProcessNextFrameAsync(VideoFrame ^ videoFrame) = ProcessNextFrameAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<IVector<DetectedFace>> ProcessNextFrameAsync(VideoFrame const& videoFrame);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<IList<DetectedFace>> ProcessNextFrameAsync(VideoFrame videoFrame);
function processNextFrameAsync(videoFrame)
Public Function ProcessNextFrameAsync (videoFrame As VideoFrame) As IAsyncOperation(Of IList(Of DetectedFace))

參數

videoFrame
VideoFrame

偵測到或追蹤臉部的 VideoFrame

傳回

非同步作業,會在成功完成時傳回 DetectedFace 物件的清單。

屬性

備註

提供的 SoftwareBitmap 必須是支援的像素格式。 使用 GetSupportedBitmapPixelFormats 來擷取目前裝置支援的像素格式清單。 使用 IsBitmapPixelFormatSupported 來測試是否支援指定的像素格式。

適用於