共用方式為


VNImageRequestHandler.Perform(VNRequest[], NSError) 方法

定義

以非同步方式執行指定 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

參數

requests
VNRequest[]

要尋找的物件 VNRequest 陣列。

error
NSError

傳回

屬性

備註

影像處理可能需要幾秒鐘的時間,開發人員應該使用背景執行緒來呼叫此方法。

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

適用於