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

适用于