CIFilter.CreateRawFilter Method
Definition
Overloads
CreateRawFilter(NSData, CIRawFilterOptions) |
Creates a CIFilter that applies the |
CreateRawFilter(NSData, NSDictionary) |
Creates a CIFilter that applies the |
CreateRawFilter(NSUrl, CIRawFilterOptions) |
Creates a CIFilter that applies the |
CreateRawFilter(NSUrl, NSDictionary) |
Creates a CIFilter that applies the |
CreateRawFilter(CVPixelBuffer, NSDictionary, CIRawFilterOptions) |
Creates a RAW processing filter for converting the data in |
CreateRawFilter(CVPixelBuffer, NSDictionary, NSDictionary) |
Creates a RAW processing filter for converting the data in |
CreateRawFilter(NSData, CIRawFilterOptions)
Creates a CIFilter that applies the options
to the RAW data in data
.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIFilter CreateRawFilter (Foundation.NSData data, CoreImage.CIRawFilterOptions options);
static member CreateRawFilter : Foundation.NSData * CoreImage.CIRawFilterOptions -> CoreImage.CIFilter
Parameters
- data
- NSData
The RAW image data.
- options
- CIRawFilterOptions
The RAW processing options.
Returns
A RAW processing filter.
- Attributes
Applies to
CreateRawFilter(NSData, NSDictionary)
Creates a CIFilter that applies the options
to the RAW data in data
.
[Foundation.Export("filterWithImageData:options:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIFilter CreateRawFilter (Foundation.NSData data, Foundation.NSDictionary options);
static member CreateRawFilter : Foundation.NSData * Foundation.NSDictionary -> CoreImage.CIFilter
Parameters
- data
- NSData
The RAW image data.
- options
- NSDictionary
The RAW processing options.
Returns
A RAW processing filter.
- Attributes
Applies to
CreateRawFilter(NSUrl, CIRawFilterOptions)
Creates a CIFilter that applies the options
to the RAW data read from url
.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIFilter CreateRawFilter (Foundation.NSUrl url, CoreImage.CIRawFilterOptions options);
static member CreateRawFilter : Foundation.NSUrl * CoreImage.CIRawFilterOptions -> CoreImage.CIFilter
Parameters
- url
- NSUrl
The URL from which the RAW image data can be read.
- options
- CIRawFilterOptions
The RAW processing options.
Returns
A RAW processing filter.
- Attributes
Applies to
CreateRawFilter(NSUrl, NSDictionary)
Creates a CIFilter that applies the options
to the RAW data read from url
.
[Foundation.Export("filterWithImageURL:options:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIFilter CreateRawFilter (Foundation.NSUrl url, Foundation.NSDictionary options);
static member CreateRawFilter : Foundation.NSUrl * Foundation.NSDictionary -> CoreImage.CIFilter
Parameters
- url
- NSUrl
The URL from which the RAW image data can be read.
- options
- NSDictionary
The RAW processing options.
Returns
A RAW processing filter.
- Attributes
Applies to
CreateRawFilter(CVPixelBuffer, NSDictionary, CIRawFilterOptions)
Creates a RAW processing filter for converting the data in pixelBuffer
by applying the settings in options
.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIFilter CreateRawFilter (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary properties, CoreImage.CIRawFilterOptions options);
static member CreateRawFilter : CoreVideo.CVPixelBuffer * Foundation.NSDictionary * CoreImage.CIRawFilterOptions -> CoreImage.CIFilter
Parameters
- pixelBuffer
- CVPixelBuffer
The CVPixelBuffer containing RAW data.
- properties
- NSDictionary
A dictionary of image data.
- options
- CIRawFilterOptions
The set of RAW processing options to be applied to the input image(s).
Returns
A RAW processing filter.
- Attributes
Applies to
CreateRawFilter(CVPixelBuffer, NSDictionary, NSDictionary)
Creates a RAW processing filter for converting the data in pixelBuffer
by applying the settings in options
.
[Foundation.Export("filterWithCVPixelBuffer:properties:options:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.MacOSX, 10, 12, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.TvOS, 10, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIFilter CreateRawFilter (CoreVideo.CVPixelBuffer pixelBuffer, Foundation.NSDictionary properties, Foundation.NSDictionary options);
static member CreateRawFilter : CoreVideo.CVPixelBuffer * Foundation.NSDictionary * Foundation.NSDictionary -> CoreImage.CIFilter
Parameters
- pixelBuffer
- CVPixelBuffer
The CVPixelBuffer containing RAW data.
- properties
- NSDictionary
A dictionary of image data.
- options
- NSDictionary
The set of RAW processing options to be applied to the input image(s).
Returns
A RAW processing filter.
- Attributes