次の方法で共有


VNTargetedImageRequest コンストラクター

定義

オーバーロード

VNTargetedImageRequest(NSObjectFlag)

初期化をスキップし、単に オブジェクトを割り当てるために派生クラスで を呼び出すコンストラクター。

VNTargetedImageRequest(CVPixelBuffer, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(NSData, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(NSData, CGImagePropertyOrientation, NSDictionary)
VNTargetedImageRequest(NSData, CGImagePropertyOrientation, VNImageOptions)
VNTargetedImageRequest(NSData, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(NSUrl, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, NSDictionary)
VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions)
VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions)
VNTargetedImageRequest(NSUrl, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(NSData, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(NSData, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary)
VNTargetedImageRequest(CIImage, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(IntPtr)

アンマネージド オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。

VNTargetedImageRequest(CGImage, NSDictionary)
VNTargetedImageRequest(CGImage, VNImageOptions)
VNTargetedImageRequest(CIImage, NSDictionary)
VNTargetedImageRequest(CIImage, VNImageOptions)
VNTargetedImageRequest(CVPixelBuffer, NSDictionary)
VNTargetedImageRequest(CVPixelBuffer, VNImageOptions)
VNTargetedImageRequest(NSData, NSDictionary)
VNTargetedImageRequest(CVPixelBuffer, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(NSData, VNImageOptions)
VNTargetedImageRequest(NSUrl, VNImageOptions)
VNTargetedImageRequest(CGImage, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, NSDictionary)
VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, VNImageOptions)
VNTargetedImageRequest(CGImage, VNImageOptions, VNRequestCompletionHandler)
VNTargetedImageRequest(CIImage, NSDictionary, VNRequestCompletionHandler)
VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, NSDictionary)
VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, VNImageOptions)
VNTargetedImageRequest(NSUrl, NSDictionary)

VNTargetedImageRequest(NSObjectFlag)

初期化をスキップし、単に オブジェクトを割り当てるために派生クラスで を呼び出すコンストラクター。

protected VNTargetedImageRequest (Foundation.NSObjectFlag t);
new Vision.VNTargetedImageRequest : Foundation.NSObjectFlag -> Vision.VNTargetedImageRequest

パラメーター

t
NSObjectFlag

未使用の sentinel 値を渡します。NSObjectFlag.Empty を渡します。

注釈

このコンストラクターは、マネージド コードでオブジェクトを完全に構築し、単にランタイムが NSObject を割り当てて初期化する場合に、派生クラスによって呼び出される必要があります。 これは Objective-C が使用する 2 段階の初期化プロセスを実装するために必要です。最初の手順はオブジェクトの割り当てを実行することです。2 番目の手順はオブジェクトを初期化することです。 開発者は、NSObjectFlag.Empty を受け取るコンストラクターを呼び出すときに、オブジェクトのメモリを割り当てて Objective-C と C# オブジェクトをバインドするだけで、NSObject まで至るまでの直接パスを利用します。 オブジェクトの実際の初期化は開発者が行います。

通常、このコンストラクターは、オブジェクトを割り当てるためにバインディング ジェネレーターによって使用されますが、実際の初期化が行われるのを防ぎます。 割り当てが行われたら、コンストラクターは オブジェクトを初期化する必要があります。 バインド ジェネレーターによって生成されたコンストラクターでは、オブジェクトを初期化するために "init" メソッドのいずれかを手動で呼び出します。

NSObjectFlag.Empty パスを使用してチェーンアップする場合、オブジェクトを完全に初期化するのは開発者の責任です。

一般に、開発者のコンストラクターが NSObjectFlag.Empty 基本実装を呼び出す場合は、Objective-C init メソッドを呼び出す必要があります。 そうでない場合、開発者は代わりにクラス内の適切なコンストラクターにチェーンする必要があります。

引数の値は無視され、実行される唯一のコードが構築フェーズであることが確認されるのは、基本的な NSObject の割り当てとランタイム型の登録だけです。 通常、チェーンは次のようになります。

//
// The NSObjectFlag merely allocates the object and registers the
// C# class with the Objective-C runtime if necessary, but no actual
// initXxx method is invoked, that is done later in the constructor
//
// This is taken from Xamarin.iOS's source code:
//
[Export ("initWithFrame:")]
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
{
// Invoke the init method now.
	var initWithFrame = new Selector ("initWithFrame:").Handle;
	if (IsDirectBinding)
		Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
	else
		Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
}

適用対象

VNTargetedImageRequest(CVPixelBuffer, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(NSData, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedImageData:options:completionHandler:")]
public VNTargetedImageRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSData * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(NSData, CGImagePropertyOrientation, NSDictionary)

[Foundation.Export("initWithTargetedImageData:orientation:options:")]
public VNTargetedImageRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(NSData, CGImagePropertyOrientation, VNImageOptions)

public VNTargetedImageRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
options
VNImageOptions

適用対象

VNTargetedImageRequest(NSData, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (Foundation.NSData imageData, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSData * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(NSUrl, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedImageURL:options:completionHandler:")]
public VNTargetedImageRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, NSDictionary)

[Foundation.Export("initWithTargetedImageURL:orientation:options:")]
public VNTargetedImageRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions)

public VNTargetedImageRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
options
VNImageOptions

適用対象

VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions)

public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
options
VNImageOptions

適用対象

VNTargetedImageRequest(NSUrl, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedCIImage:orientation:options:completionHandler:")]
public VNTargetedImageRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:completionHandler:")]
public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(NSData, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedImageData:orientation:options:completionHandler:")]
public VNTargetedImageRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(NSData, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedImageURL:orientation:options:completionHandler:")]
public VNTargetedImageRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedCGImage:orientation:options:completionHandler:")]
public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary)

[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:")]
public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CIImage, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(IntPtr)

アンマネージド オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。

protected internal VNTargetedImageRequest (IntPtr handle);
new Vision.VNTargetedImageRequest : nativeint -> Vision.VNTargetedImageRequest

パラメーター

handle
IntPtr

nativeint

アンマネージ オブジェクトへのポインター (ハンドル)。

注釈

このコンストラクターはランタイム インフラストラクチャ (GetNSObject(IntPtr)) によって呼び出され、アンマネージド Objective-C オブジェクトへのポインターの新しいマネージド表現を作成します。 開発者は、このメソッドを直接呼び出さないでください。代わりに GetNSObject メソッドを呼び出す必要があります。これにより、マネージド オブジェクトの 2 つのインスタンスが同じネイティブ オブジェクトを指すのを防ぐことができます。

適用対象

VNTargetedImageRequest(CGImage, NSDictionary)

[Foundation.Export("initWithTargetedCGImage:options:")]
public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CGImage, VNImageOptions)

public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
options
VNImageOptions

適用対象

VNTargetedImageRequest(CIImage, NSDictionary)

[Foundation.Export("initWithTargetedCIImage:options:")]
public VNTargetedImageRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CIImage, VNImageOptions)

public VNTargetedImageRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
options
VNImageOptions

適用対象

VNTargetedImageRequest(CVPixelBuffer, NSDictionary)

[Foundation.Export("initWithTargetedCVPixelBuffer:options:")]
public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CVPixelBuffer, VNImageOptions)

public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
options
VNImageOptions

適用対象

VNTargetedImageRequest(NSData, NSDictionary)

[Foundation.Export("initWithTargetedImageData:options:")]
public VNTargetedImageRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : Foundation.NSData * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CVPixelBuffer, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedCVPixelBuffer:options:completionHandler:")]
public VNTargetedImageRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(NSData, VNImageOptions)

public VNTargetedImageRequest (Foundation.NSData imageData, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : Foundation.NSData * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

imageData
NSData
options
VNImageOptions

適用対象

VNTargetedImageRequest(NSUrl, VNImageOptions)

public VNTargetedImageRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
options
VNImageOptions

適用対象

VNTargetedImageRequest(CGImage, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedCGImage:options:completionHandler:")]
public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, NSDictionary)

[Foundation.Export("initWithTargetedCGImage:orientation:options:")]
public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CGImage, CGImagePropertyOrientation, VNImageOptions)

public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
options
VNImageOptions

適用対象

VNTargetedImageRequest(CGImage, VNImageOptions, VNRequestCompletionHandler)

public VNTargetedImageRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreGraphics.CGImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

cgImage
CGImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

適用対象

VNTargetedImageRequest(CIImage, NSDictionary, VNRequestCompletionHandler)

[Foundation.Export("initWithTargetedCIImage:options:completionHandler:")]
public VNTargetedImageRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

追加する。

このパラメーターは、null に設定できます。

属性

適用対象

VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, NSDictionary)

[Foundation.Export("initWithTargetedCIImage:orientation:options:")]
public VNTargetedImageRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
optionsDict
NSDictionary
属性

適用対象

VNTargetedImageRequest(CIImage, CGImagePropertyOrientation, VNImageOptions)

public VNTargetedImageRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTargetedImageRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTargetedImageRequest

パラメーター

ciImage
CIImage
options
VNImageOptions

適用対象

VNTargetedImageRequest(NSUrl, NSDictionary)

[Foundation.Export("initWithTargetedImageURL:options:")]
public VNTargetedImageRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict);
new Vision.VNTargetedImageRequest : Foundation.NSUrl * Foundation.NSDictionary -> Vision.VNTargetedImageRequest

パラメーター

imageUrl
NSUrl
optionsDict
NSDictionary
属性

適用対象