次の方法で共有


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

適用対象