FaceDetector.DetectFacesAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
DetectFacesAsync(SoftwareBitmap) |
Détecte de manière asynchrone les visages dans le SoftwareBitmap fourni. |
DetectFacesAsync(SoftwareBitmap, BitmapBounds) |
Détecte de manière asynchrone les visages dans le SoftwareBitmap fourni dans la zone de recherche spécifiée. |
DetectFacesAsync(SoftwareBitmap)
Détecte de manière asynchrone les visages dans le SoftwareBitmap fourni.
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))
Paramètres
- image
- SoftwareBitmap
Données d’image à traiter pour la détection des visages.
Retours
Opération asynchrone qui retourne une liste d’objets DetectedFace en cas d’achèvement réussi.
- Attributs
Remarques
Le SoftwareBitmap fourni doit être dans un format de pixel pris en charge pour cette méthode et ses surcharges. Utilisez GetSupportedBitmapPixelFormats pour récupérer une liste des formats de pixels pris en charge pour l’appareil actuel. Utilisez IsBitmapPixelFormatSupported pour tester si un format de pixel donné est pris en charge.
Voir aussi
S’applique à
DetectFacesAsync(SoftwareBitmap, BitmapBounds)
Détecte de manière asynchrone les visages dans le SoftwareBitmap fourni dans la zone de recherche spécifiée.
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))
Paramètres
- image
- SoftwareBitmap
Données d’image à traiter pour la détection des visages.
- searchArea
- BitmapBounds
Limites dans le SoftwareBitmap dans lequel la détection des visages sera effectuée.
Retours
Opération asynchrone qui retourne une liste d’objets DetectedFace en cas d’achèvement réussi.
- Attributs