VNImageRegistrationRequest Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
VNImageRegistrationRequest(NSObjectFlag)
Constructeur pour appeler des classes dérivées pour ignorer l’initialisation et simplement allouer l’objet.
protected VNImageRegistrationRequest (Foundation.NSObjectFlag t);
new Vision.VNImageRegistrationRequest : Foundation.NSObjectFlag -> Vision.VNImageRegistrationRequest
Paramètres
Valeur sentinelle inutilisée, passez NSObjectFlag.Empty.
Remarques
Ce constructeur doit être appelé par des classes dérivées lorsqu’elles construisent complètement l’objet dans le code managé et veulent simplement que le runtime alloue et initialise le NSObject. Cela est nécessaire pour implémenter le processus d’initialisation en deux étapes utilisé par Objective-C. La première étape consiste à effectuer l’allocation d’objets, la deuxième étape consiste à initialiser l’objet. Lorsque les développeurs appellent le constructeur qui utilise NSObjectFlag.Empty, ils tirent parti d’un chemin d’accès direct qui va jusqu’à NSObject pour simplement allouer la mémoire de l’objet et lier les objets Objective-C et C#. L’initialisation réelle de l’objet incombe au développeur.
Ce constructeur est généralement utilisé par le générateur de liaison pour allouer l’objet, mais empêche l’initialisation réelle de se produire. Une fois l’allocation effectuée, le constructeur doit initialiser l’objet. Avec les constructeurs générés par le générateur de liaison, cela signifie qu’il appelle manuellement l’une des méthodes « init » pour initialiser l’objet.
Il incombe au développeur d’initialiser complètement l’objet s’il est chaîné à l’aide du chemin NSObjectFlag.Empty.
En général, si le constructeur du développeur appelle l’implémentation de base NSObjectFlag.Empty, il doit appeler une méthode init Objective-C. Si ce n’est pas le cas, les développeurs doivent plutôt chaîner au constructeur approprié dans leur classe.
La valeur de l’argument est ignorée et garantit simplement que le seul code exécuté est la phase de construction est l’allocation NSObject de base et l’inscription du type runtime. En règle générale, le chaînage se présente comme suit :
//
// 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);
}
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(NSData, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageData:options:completionHandler:")]
public VNImageRegistrationRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSData * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSData, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedImageData:orientation:options:")]
public VNImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSData, CGImagePropertyOrientation, VNImageOptions)
public VNImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(NSData, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (Foundation.NSData imageData, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSData * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(NSUrl, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageURL:options:completionHandler:")]
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedImageURL:orientation:options:")]
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions)
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions)
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(NSUrl, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(CGImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(CIImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCIImage:orientation:options:completionHandler:")]
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CIImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:completionHandler:")]
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(NSData, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageData:orientation:options:completionHandler:")]
public VNImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSData, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageURL:orientation:options:completionHandler:")]
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CGImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCGImage:orientation:options:completionHandler:")]
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:")]
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CIImage, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(IntPtr)
Constructeur utilisé lors de la création de représentations managées d’objets non managés ; Appelé par le runtime.
protected internal VNImageRegistrationRequest (IntPtr handle);
new Vision.VNImageRegistrationRequest : nativeint -> Vision.VNImageRegistrationRequest
Paramètres
- handle
-
IntPtr
nativeint
Pointeur (handle) vers l’objet non managé.
Remarques
Ce constructeur est appelé par l’infrastructure runtime (GetNSObject(IntPtr)) pour créer une représentation managée pour un pointeur vers un objet Objective-C non managé. Les développeurs ne doivent pas appeler cette méthode directement, mais ils doivent appeler la méthode GetNSObject, car cela empêchera deux instances d’un objet managé de pointer vers le même objet natif.
S’applique à
VNImageRegistrationRequest(CGImage, NSDictionary)
[Foundation.Export("initWithTargetedCGImage:options:")]
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CGImage, VNImageOptions)
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(CIImage, NSDictionary)
[Foundation.Export("initWithTargetedCIImage:options:")]
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CIImage, VNImageOptions)
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, NSDictionary)
[Foundation.Export("initWithTargetedCVPixelBuffer:options:")]
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, VNImageOptions)
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(NSData, NSDictionary)
[Foundation.Export("initWithTargetedImageData:options:")]
public VNImageRegistrationRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : Foundation.NSData * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CVPixelBuffer, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCVPixelBuffer:options:completionHandler:")]
public VNImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- pixelBuffer
- CVPixelBuffer
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(NSData, VNImageOptions)
public VNImageRegistrationRequest (Foundation.NSData imageData, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : Foundation.NSData * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- imageData
- NSData
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(NSUrl, VNImageOptions)
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(CGImage, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCGImage:options:completionHandler:")]
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CGImage, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCGImage:orientation:options:")]
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CGImage, CGImagePropertyOrientation, VNImageOptions)
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(CGImage, VNImageOptions, VNRequestCompletionHandler)
public VNImageRegistrationRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreGraphics.CGImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- cgImage
- CGImage
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
S’applique à
VNImageRegistrationRequest(CIImage, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCIImage:options:completionHandler:")]
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CIImage, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCIImage:orientation:options:")]
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Attributs
S’applique à
VNImageRegistrationRequest(CIImage, CGImagePropertyOrientation, VNImageOptions)
public VNImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNImageRegistrationRequest
Paramètres
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
S’applique à
VNImageRegistrationRequest(NSUrl, NSDictionary)
[Foundation.Export("initWithTargetedImageURL:options:")]
public VNImageRegistrationRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict);
new Vision.VNImageRegistrationRequest : Foundation.NSUrl * Foundation.NSDictionary -> Vision.VNImageRegistrationRequest
Paramètres
- imageUrl
- NSUrl
- optionsDict
- NSDictionary
- Attributs