Condividi tramite


FaceDetector.DetectFacesAsync Metodo

Definizione

Overload

DetectFacesAsync(SoftwareBitmap)

Rileva in modo asincrono i visi nella mappa SoftwareBitmap specificata.

DetectFacesAsync(SoftwareBitmap, BitmapBounds)

Rileva in modo asincrono i visi nella mappa SoftwareBitmap fornita all'interno dell'area di ricerca specificata.

DetectFacesAsync(SoftwareBitmap)

Rileva in modo asincrono i visi nella mappa SoftwareBitmap specificata.

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))

Parametri

image
SoftwareBitmap

Dati dell'immagine da elaborare per il rilevamento dei volti.

Restituisce

Operazione asincrona che restituisce un elenco di oggetti DetectedFace al termine del completamento.

Attributi

Commenti

Il softwareBitmap fornito deve essere in un formato pixel supportato per questo metodo e i relativi overload. Usare GetSupportedBitmapPixelFormats per recuperare un elenco di formati pixel supportati per il dispositivo corrente. Usare IsBitmapPixelFormatSupported per verificare se è supportato un determinato formato pixel.

Vedi anche

Si applica a

DetectFacesAsync(SoftwareBitmap, BitmapBounds)

Rileva in modo asincrono i visi nella mappa SoftwareBitmap fornita all'interno dell'area di ricerca specificata.

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))

Parametri

image
SoftwareBitmap

Dati dell'immagine da elaborare per il rilevamento dei volti.

searchArea
BitmapBounds

I limiti all'interno di SoftwareBitmap in cui verrà eseguito il rilevamento viso.

Restituisce

Operazione asincrona che restituisce un elenco di oggetti DetectedFace al termine del completamento.

Attributi

Vedi anche

Si applica a