VNHomographicImageRegistrationRequest Constructores
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
VNHomographicImageRegistrationRequest(NSObjectFlag)
Constructor para llamar a en clases derivadas para omitir la inicialización y simplemente asignar el objeto.
protected VNHomographicImageRegistrationRequest (Foundation.NSObjectFlag t);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSObjectFlag -> Vision.VNHomographicImageRegistrationRequest
Parámetros
Valor centinela sin usar, pase NSObjectFlag.Empty.
Comentarios
Las clases derivadas deben llamar a este constructor cuando construyen completamente el objeto en código administrado y simplemente quieren que el tiempo de ejecución asigne e inicialice el objeto NSObject. Esto es necesario para implementar el proceso de inicialización en dos pasos que usa Objective-C, el primer paso es realizar la asignación de objetos; el segundo paso es inicializar el objeto. Cuando los desarrolladores invocan al constructor que toma NSObjectFlag.Empty, aprovechan una ruta de acceso directa que va hasta NSObject para asignar simplemente la memoria del objeto y enlazar los objetos Objective-C y C# juntos. La inicialización real del objeto es hasta el desarrollador.
Normalmente, el generador de enlaces usa este constructor para asignar el objeto, pero impide que se produzca la inicialización real. Una vez realizada la asignación, el constructor tiene que inicializar el objeto . Con los constructores generados por el generador de enlaces, esto significa que invoca manualmente uno de los métodos "init" para inicializar el objeto.
Es responsabilidad del desarrollador inicializar completamente el objeto si se encadenan mediante la ruta de acceso NSObjectFlag.Empty.
En general, si el constructor del desarrollador invoca la implementación base NSObjectFlag.Empty, debe llamar a un método init de Objective-C. Si este no es el caso, los desarrolladores deben encadenar al constructor adecuado en su clase.
El valor del argumento se omite y simplemente garantiza que el único código que se ejecuta es la fase de construcción es la asignación básica de NSObject y el registro del tipo en tiempo de ejecución. Normalmente, el encadenamiento tendría el siguiente aspecto:
//
// 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);
}
Se aplica a
VNHomographicImageRegistrationRequest(NSData, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageData:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSData, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedImageData:orientation:options:")]
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSData, CGImagePropertyOrientation, VNImageOptions)
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(NSData, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageURL:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedImageURL:orientation:options:")]
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions)
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions)
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCGImage:orientation:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCIImage:orientation:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(NSData, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageData:orientation:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSData, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedImageURL:orientation:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, CGImagePropertyOrientation, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCVPixelBuffer:orientation:options:")]
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(IntPtr)
Constructor utilizado al crear representaciones administradas de objetos no administrados; Lo llama el tiempo de ejecución.
protected internal VNHomographicImageRegistrationRequest (IntPtr handle);
new Vision.VNHomographicImageRegistrationRequest : nativeint -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- handle
-
IntPtr
nativeint
Puntero (identificador) al objeto no administrado.
Comentarios
La infraestructura en tiempo de ejecución (GetNSObject(IntPtr)) invoca este constructor para crear una nueva representación administrada para un puntero a un objeto Objective-C no administrado. Los desarrolladores no deben invocar este método directamente, sino que deben llamar al método GetNSObject, ya que impedirá que dos instancias de un objeto administrado apunten al mismo objeto nativo.
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, NSDictionary)
[Foundation.Export("initWithTargetedCGImage:options:")]
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, VNImageOptions)
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, NSDictionary)
[Foundation.Export("initWithTargetedCIImage:options:")]
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, VNImageOptions)
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, NSDictionary)
[Foundation.Export("initWithTargetedCVPixelBuffer:options:")]
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, VNImageOptions)
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(CVPixelBuffer, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCVPixelBuffer:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreVideo.CVPixelBuffer * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- pixelBuffer
- CVPixelBuffer
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSData, VNImageOptions)
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(NSData, NSDictionary)
[Foundation.Export("initWithTargetedImageData:options:")]
public VNHomographicImageRegistrationRequest (Foundation.NSData imageData, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSData * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageData
- NSData
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, VNImageOptions)
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCGImage:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCGImage:orientation:options:")]
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, CGImagePropertyOrientation, VNImageOptions)
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(CGImage, VNImageOptions, VNRequestCompletionHandler)
public VNHomographicImageRegistrationRequest (CoreGraphics.CGImage cgImage, Vision.VNImageOptions options, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreGraphics.CGImage * Vision.VNImageOptions * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- cgImage
- CGImage
- options
- VNImageOptions
- completionHandler
- VNRequestCompletionHandler
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, NSDictionary, VNRequestCompletionHandler)
[Foundation.Export("initWithTargetedCIImage:options:completionHandler:")]
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, Foundation.NSDictionary optionsDict, Vision.VNRequestCompletionHandler completionHandler);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * Foundation.NSDictionary * Vision.VNRequestCompletionHandler -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, CGImagePropertyOrientation, NSDictionary)
[Foundation.Export("initWithTargetedCIImage:orientation:options:")]
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- optionsDict
- NSDictionary
- Atributos
Se aplica a
VNHomographicImageRegistrationRequest(CIImage, CGImagePropertyOrientation, VNImageOptions)
public VNHomographicImageRegistrationRequest (CoreImage.CIImage ciImage, ImageIO.CGImagePropertyOrientation orientation, Vision.VNImageOptions options);
new Vision.VNHomographicImageRegistrationRequest : CoreImage.CIImage * ImageIO.CGImagePropertyOrientation * Vision.VNImageOptions -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- ciImage
- CIImage
- orientation
- CGImagePropertyOrientation
- options
- VNImageOptions
Se aplica a
VNHomographicImageRegistrationRequest(NSUrl, NSDictionary)
[Foundation.Export("initWithTargetedImageURL:options:")]
public VNHomographicImageRegistrationRequest (Foundation.NSUrl imageUrl, Foundation.NSDictionary optionsDict);
new Vision.VNHomographicImageRegistrationRequest : Foundation.NSUrl * Foundation.NSDictionary -> Vision.VNHomographicImageRegistrationRequest
Parámetros
- imageUrl
- NSUrl
- optionsDict
- NSDictionary
- Atributos