VNTranslationalImageRegistrationRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
VNTranslationalImageRegistrationRequest(NSObjectFlag)
Constructor to call on derived classes to skip initialization and merely allocate the object.
protected VNTranslationalImageRegistrationRequest (Foundation.NSObjectFlag t);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSObjectFlag -> Vision.VNTranslationalImageRegistrationRequest
Parameters
Unused sentinel value, pass NSObjectFlag.Empty.
Remarks
This constructor should be called by derived classes when they completely construct the object in managed code and merely want the runtime to allocate and initialize the NSObject. This is required to implement the two-step initialization process that Objective-C uses, the first step is to perform the object allocation, the second step is to initialize the object. When developers invoke the constructor that takes the NSObjectFlag.Empty they take advantage of a direct path that goes all the way up to NSObject to merely allocate the object's memory and bind the Objective-C and C# objects together. The actual initialization of the object is up to the developer.
This constructor is typically used by the binding generator to allocate the object, but prevent the actual initialization to take place. Once the allocation has taken place, the constructor has to initialize the object. With constructors generated by the binding generator this means that it manually invokes one of the "init" methods to initialize the object.
It is the developer's responsibility to completely initialize the object if they chain up using the NSObjectFlag.Empty path.
In general, if the developer's constructor invokes the NSObjectFlag.Empty base implementation, then it should be calling an Objective-C init method. If this is not the case, developers should instead chain to the proper constructor in their class.
The argument value is ignored and merely ensures that the only code that is executed is the construction phase is the basic NSObject allocation and runtime type registration. Typically the chaining would look like this:
//
// 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);
}
Applies to
VNTranslationalImageRegistrationRequest(NSData, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageData:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSData, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedImageData:orientation:options:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSData, CGImagePropertyOrientation, VNImageOptions)
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(NSData, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageURL:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedImageURL:orientation:options:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions)
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions)
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(CGImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCGImage:orientation:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CIImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCIImage:orientation:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CIImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(NSData, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageData:orientation:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSData, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageURL:orientation:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(CGImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:")]
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(CIImage, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(IntPtr)
A constructor used when creating managed representations of unmanaged objects; Called by the runtime.
protected internal VNTranslationalImageRegistrationRequest (IntPtr handle);
new Vision.VNTranslationalImageRegistrationRequest : nativeint -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- handle
-
IntPtr
nativeint
Pointer (handle) to the unmanaged object.
Remarks
This constructor is invoked by the runtime infrastructure (GetNSObject(IntPtr)) to create a new managed representation for a pointer to an unmanaged Objective-C object. Developers should not invoke this method directly, instead they should call the GetNSObject method as it will prevent two instances of a managed object to point to the same native object.
Applies to
VNTranslationalImageRegistrationRequest(CGImage, NSDictionary)
[Foundation.Export("initWithTargetedCGImage:options:")]
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CGImage, VNImageOptions)
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(CIImage, NSDictionary)
[Foundation.Export("initWithTargetedCIImage:options:")]
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CIImage, VNImageOptions)
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, NSDictionary)
[Foundation.Export("initWithTargetedCVPixelBuffer:options:")]
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, VNImageOptions)
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(CVPixelBuffer, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCVPixelBuffer:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- pixelBuffer
- CVPixelBuffer
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSData, VNImageOptions)
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(NSData, NSDictionary)
[Foundation.Export("initWithTargetedImageData:options:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSData * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageData
- NSData
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, VNImageOptions)
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(CGImage, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCGImage:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CGImage, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCGImage:orientation:options:")]
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CGImage, CGImagePropertyOrientation, VNImageOptions)
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(CGImage, VNImageOptions, VNRequestCompletionHandler)
public VNTranslationalImageRegistrationRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreGraphics.CGImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- cgImage
- CGImage
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Applies to
VNTranslationalImageRegistrationRequest(CIImage, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCIImage:options:completionHandler:")]
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CIImage, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCIImage:orientation:options:")]
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributes
Applies to
VNTranslationalImageRegistrationRequest(CIImage, CGImagePropertyOrientation, VNImageOptions)
public VNTranslationalImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNTranslationalImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Applies to
VNTranslationalImageRegistrationRequest(NSUrl, NSDictionary)
[Foundation.Export("initWithTargetedImageURL:options:")]
public VNTranslationalImageRegistrationRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict);
new Vision.VNTranslationalImageRegistrationRequest : Foundation.NSUrl * Foundation.NSDictionary -> Vision.VNTranslationalImageRegistrationRequest
Parameters
- imageUrl
- NSUrl
- optionsDict
- NSDictionary
- Attributes