Freigeben über


VNTargetedImageRequest Konstruktoren

Definition

Überlädt

VNTargetedImageRequest(NSObjectFlag)

Konstruktor, der für abgeleitete Klassen aufgerufen werden soll, um die Initialisierung zu überspringen und das Objekt nur zuzuordnen.

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)

Ein Konstruktor, der beim Erstellen verwalteter Darstellungen nicht verwalteter Objekte verwendet wird; Wird von der Runtime aufgerufen.

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)

Konstruktor, der für abgeleitete Klassen aufgerufen werden soll, um die Initialisierung zu überspringen und das Objekt nur zuzuordnen.

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

Parameter

t
NSObjectFlag

Nicht verwendeter Sentinelwert, übergeben Sie NSObjectFlag.Empty.

Hinweise

Dieser Konstruktor sollte von abgeleiteten Klassen aufgerufen werden, wenn sie das Objekt vollständig in verwaltetem Code erstellen und nur möchten, dass die Runtime das NSObject ordnet und initialisiert. Dies ist erforderlich, um den zweistufigen Initialisierungsprozess zu implementieren, den Objective-C verwendet. Der erste Schritt besteht darin, die Objektzuordnung durchzuführen, der zweite Schritt besteht darin, das Objekt zu initialisieren. Wenn Entwickler den Konstruktor aufrufen, der NSObjectFlag.Empty verwendet, nutzen sie einen direkten Pfad, der bis zu NSObject reicht, um nur den Arbeitsspeicher des Objekts zuzuweisen und die Objective-C- und C#-Objekte miteinander zu binden. Die tatsächliche Initialisierung des Objekts liegt beim Entwickler.

Dieser Konstruktor wird in der Regel vom Bindungsgenerator verwendet, um das Objekt zuzuordnen, aber die eigentliche Initialisierung zu verhindern. Nachdem die Zuordnung erfolgt ist, muss der Konstruktor das Objekt initialisieren. Bei Konstruktoren, die vom Bindungsgenerator generiert werden, bedeutet dies, dass eine der "init"-Methoden manuell aufgerufen wird, um das Objekt zu initialisieren.

Es liegt in der Verantwortung des Entwicklers, das Objekt vollständig zu initialisieren, wenn es mithilfe des Pfads NSObjectFlag.Empty verkettet wird.

Wenn der Konstruktor des Entwicklers die Basisimplementierung NSObjectFlag.Empty aufruft, sollte er im Allgemeinen eine Objective-C-Init-Methode aufrufen. Wenn dies nicht der Fall ist, sollten Entwickler stattdessen eine Verkettung mit dem richtigen Konstruktor in ihrer Klasse ausführen.

Der Argumentwert wird ignoriert und stellt lediglich sicher, dass der einzige Code, der ausgeführt wird, die Erstellungsphase ist die grundlegende NSObject-Zuordnung und Laufzeittypregistrierung. In der Regel sieht die Verkettung wie folgt aus:

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

Gilt für:

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

Parameter

pixelBuffer
CVPixelBuffer
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

imageData
NSData
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

imageData
NSData
optionsDict
NSDictionary
Attribute

Gilt für:

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

Parameter

imageData
NSData
options
VNImageOptions

Gilt für:

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

Parameter

imageData
NSData
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

imageUrl
NSUrl
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

imageUrl
NSUrl
optionsDict
NSDictionary
Attribute

Gilt für:

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

Parameter

imageUrl
NSUrl
options
VNImageOptions

Gilt für:

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

Parameter

pixelBuffer
CVPixelBuffer
options
VNImageOptions

Gilt für:

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

Parameter

imageUrl
NSUrl
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

cgImage
CGImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

ciImage
CIImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

ciImage
CIImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

pixelBuffer
CVPixelBuffer
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

imageData
NSData
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

imageData
NSData
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

imageUrl
NSUrl
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

cgImage
CGImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

imageUrl
NSUrl
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
Attribute

Gilt für:

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

Parameter

ciImage
CIImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

VNTargetedImageRequest(IntPtr)

Ein Konstruktor, der beim Erstellen verwalteter Darstellungen nicht verwalteter Objekte verwendet wird; Wird von der Runtime aufgerufen.

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

Parameter

handle
IntPtr

nativeint

Zeiger (Handle) auf das nicht verwaltete Objekt.

Hinweise

Dieser Konstruktor wird von der Laufzeitinfrastruktur (GetNSObject(IntPtr)) aufgerufen, um eine neue verwaltete Darstellung für einen Zeiger auf ein nicht verwaltetes Objective-C-Objekt zu erstellen. Entwickler sollten diese Methode nicht direkt aufrufen, sondern die GetNSObject-Methode aufrufen, da sie verhindert, dass zwei Instanzen eines verwalteten Objekts auf dasselbe systemeigene Objekt verweisen.

Gilt für:

VNTargetedImageRequest(CGImage, NSDictionary)

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

Parameter

cgImage
CGImage
optionsDict
NSDictionary
Attribute

Gilt für:

VNTargetedImageRequest(CGImage, VNImageOptions)

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

Parameter

cgImage
CGImage
options
VNImageOptions

Gilt für:

VNTargetedImageRequest(CIImage, NSDictionary)

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

Parameter

ciImage
CIImage
optionsDict
NSDictionary
Attribute

Gilt für:

VNTargetedImageRequest(CIImage, VNImageOptions)

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

Parameter

ciImage
CIImage
options
VNImageOptions

Gilt für:

VNTargetedImageRequest(CVPixelBuffer, NSDictionary)

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

Parameter

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
Attribute

Gilt für:

VNTargetedImageRequest(CVPixelBuffer, VNImageOptions)

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

Parameter

pixelBuffer
CVPixelBuffer
options
VNImageOptions

Gilt für:

VNTargetedImageRequest(NSData, NSDictionary)

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

Parameter

imageData
NSData
optionsDict
NSDictionary
Attribute

Gilt für:

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

Parameter

pixelBuffer
CVPixelBuffer
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

VNTargetedImageRequest(NSData, VNImageOptions)

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

Parameter

imageData
NSData
options
VNImageOptions

Gilt für:

VNTargetedImageRequest(NSUrl, VNImageOptions)

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

Parameter

imageUrl
NSUrl
options
VNImageOptions

Gilt für:

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

Parameter

cgImage
CGImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

cgImage
CGImage
optionsDict
NSDictionary
Attribute

Gilt für:

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

Parameter

cgImage
CGImage
options
VNImageOptions

Gilt für:

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

Parameter

cgImage
CGImage
options
VNImageOptions
completionHandler
VNRequestCompletionHandler

Gilt für:

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

Parameter

ciImage
CIImage
optionsDict
NSDictionary
completionHandler
VNRequestCompletionHandler

Muss hinzugefügt werden.

Dieser Parameter kann null sein.

Attribute

Gilt für:

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

Parameter

ciImage
CIImage
optionsDict
NSDictionary
Attribute

Gilt für:

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

Parameter

ciImage
CIImage
options
VNImageOptions

Gilt für:

VNTargetedImageRequest(NSUrl, NSDictionary)

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

Parameter

imageUrl
NSUrl
optionsDict
NSDictionary
Attribute

Gilt für: