Condividi tramite


VNImageRequestHandler.Perform(VNRequest[], NSError) Metodo

Definizione

Esegue in modo asincrono il riconoscimento della visione per l'oggetto specificato requests.

[Foundation.Export("performRequests:error:")]
public virtual bool Perform (Vision.VNRequest[] requests, out Foundation.NSError error);
abstract member Perform : Vision.VNRequest[] *  -> bool
override this.Perform : Vision.VNRequest[] *  -> bool

Parametri

requests
VNRequest[]

Matrice di VNRequest oggetti da cercare.

error
NSError

Restituisce

Attributi

Commenti

L'elaborazione delle immagini può richiedere alcuni secondi e gli sviluppatori devono usare un thread in background per chiamare questo metodo.

System.Threading.Tasks.Task.Run(() =>
{
	using (var requestHandler = new VNImageRequestHandler(img, new NSDictionary()))
	{
		var findFacesRequest = new VNDetectFaceRectanglesRequest(faceDetectionHandler);
		requestHandler.Perform(new[] { findFacesRequest }, out var error);
		if (error != null)
		{
			HandleError(error);
		}
	}
});

Si applica a