CIImage.FromImageBuffer Method

Definition

Overloads

FromImageBuffer(CVImageBuffer)

Creates a new CIImage based on the data in the imageBuffer.

FromImageBuffer(CVPixelBuffer)

Creates a new image from the data that is contained in buffer.

FromImageBuffer(CVImageBuffer, CIImageInitializationOptions)

Creates a new CIImage based on the data in the imageBuffer and with the specified options.

FromImageBuffer(CVImageBuffer, NSDictionary)
FromImageBuffer(CVImageBuffer, NSDictionary<NSString,NSObject>)

Creates a new CIImage based on the data in imageBuffer and applying the options in dict.

FromImageBuffer(CVPixelBuffer, CIImageInitializationOptions)

Creates a new image from the data that is contained in buffer by using the specified options.

FromImageBuffer(CVPixelBuffer, NSDictionary)

Creates a new image from the data that is contained in buffer by using the options that are specified in dict.

FromImageBuffer(CVImageBuffer)

Creates a new CIImage based on the data in the imageBuffer.

[Foundation.Export("imageWithCVImageBuffer:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer);
static member FromImageBuffer : CoreVideo.CVImageBuffer -> CoreImage.CIImage

Parameters

imageBuffer
CVImageBuffer

The source of the image.

Returns

Attributes

Applies to

FromImageBuffer(CVPixelBuffer)

Creates a new image from the data that is contained in buffer.

[Foundation.Export("imageWithCVPixelBuffer:")]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVPixelBuffer buffer);
static member FromImageBuffer : CoreVideo.CVPixelBuffer -> CoreImage.CIImage

Parameters

buffer
CVPixelBuffer

Returns

Attributes

Applies to

FromImageBuffer(CVImageBuffer, CIImageInitializationOptions)

Creates a new CIImage based on the data in the imageBuffer and with the specified options.

[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer, CoreImage.CIImageInitializationOptions options);
static member FromImageBuffer : CoreVideo.CVImageBuffer * CoreImage.CIImageInitializationOptions -> CoreImage.CIImage

Parameters

imageBuffer
CVImageBuffer

Returns

Attributes

Applies to

FromImageBuffer(CVImageBuffer, NSDictionary)

[Foundation.Export("imageWithCVImageBuffer:options:")]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer, Foundation.NSDictionary dict);
static member FromImageBuffer : CoreVideo.CVImageBuffer * Foundation.NSDictionary -> CoreImage.CIImage

Parameters

imageBuffer
CVImageBuffer

Returns

Attributes

Applies to

FromImageBuffer(CVImageBuffer, NSDictionary<NSString,NSObject>)

Creates a new CIImage based on the data in imageBuffer and applying the options in dict.

[Foundation.Export("imageWithCVImageBuffer:options:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer, Foundation.NSDictionary<Foundation.NSString,Foundation.NSObject> dict);
static member FromImageBuffer : CoreVideo.CVImageBuffer * Foundation.NSDictionary<Foundation.NSString, Foundation.NSObject> -> CoreImage.CIImage

Parameters

imageBuffer
CVImageBuffer

Source of the data for the image.

dict
NSDictionary<NSString,NSObject>

A dictionary of strings to objects, holding the options for image creation.

This parameter can be null.

Returns

Attributes

Applies to

FromImageBuffer(CVPixelBuffer, CIImageInitializationOptions)

Creates a new image from the data that is contained in buffer by using the specified options.

public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVPixelBuffer buffer, CoreImage.CIImageInitializationOptions options);
static member FromImageBuffer : CoreVideo.CVPixelBuffer * CoreImage.CIImageInitializationOptions -> CoreImage.CIImage

Parameters

buffer
CVPixelBuffer
options
CIImageInitializationOptions

Options to initialize the image with.

Returns

Applies to

FromImageBuffer(CVPixelBuffer, NSDictionary)

Creates a new image from the data that is contained in buffer by using the options that are specified in dict.

[Foundation.Export("imageWithCVPixelBuffer:options:")]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVPixelBuffer buffer, Foundation.NSDictionary dict);
static member FromImageBuffer : CoreVideo.CVPixelBuffer * Foundation.NSDictionary -> CoreImage.CIImage

Parameters

buffer
CVPixelBuffer
dict
NSDictionary

Extra configuration options, as an NSDictionary.

This parameter can be null.

Returns

Attributes

Applies to