CIConvolutionCore Class
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.
An abstract class that is the base for convolution filters.
public abstract class CIConvolutionCore : CoreImage.CIFilter
type CIConvolutionCore = class
inherit CIFilter
- Inheritance
- Derived
Remarks
Convolution filters generate a pixel value by summing the pixel values in a neighborhood (the size of the neighborhood may be 3x3, 5x5, or 9 pixels horizontally or vertically) and then by adding a bias. To maintain brightness, the sum of values in the convolution kernel must sum to 1.0.
Constructors
| Name | Description |
|---|---|
| CIConvolutionCore(NativeHandle) |
A constructor used when creating managed representations of unmanaged objects. Called by the runtime. |
| CIConvolutionCore(NSCoder) |
A constructor that initializes the object from the data stored in the unarchiver object. |
| CIConvolutionCore(NSObjectFlag) |
Constructor to call on derived classes to skip initialization and merely allocate the object. |
| CIConvolutionCore(String) |
Creates a new CIConvolutionCore with the specified name. |
Properties
| Name | Description |
|---|---|
| AccessibilityAttributedUserInputLabels | (Inherited from NSObject) |
| AccessibilityRespondsToUserInteraction | (Inherited from NSObject) |
| AccessibilityTextualContext | (Inherited from NSObject) |
| AccessibilityUserInputLabels | (Inherited from NSObject) |
| Attributes |
Configurable attributes of the filter. (Inherited from CIFilter) |
| Bias |
Gets or sets the bias of the convolution. |
| Class | (Inherited from NSObject) |
| ClassHandle |
The Objective-C class handle for this class. (Inherited from CIFilter) |
| DebugDescription | (Inherited from NSObject) |
| Description | (Inherited from NSObject) |
| ExposedBindings | (Inherited from NSObject) |
| Handle |
Handle (pointer) to the unmanaged object representation. (Inherited from NSObject) |
| InputImage |
Gets or sets an image to filter. |
| InputKeys |
Gets an array that contains the names of the input keys for the filter. (Inherited from CIFilter) |
| IsDirectBinding | (Inherited from NSObject) |
| IsProxy | (Inherited from NSObject) |
| Item[NSString] |
Gets the value that is identified by |
| Name |
Gets the filter name. (Inherited from CIFilter) |
| OutputImage |
Gets the image that results from applying the filter. (Inherited from CIFilter) |
| OutputKeys |
Gets an array that contains the names of the output keys for the filter. (Inherited from CIFilter) |
| RetainCount | (Inherited from NSObject) |
| Self | (Inherited from NSObject) |
| Superclass | (Inherited from NSObject) |
| SuperHandle |
Handle used to represent the methods in the base class for this NSObject. (Inherited from NSObject) |
| Weights |
Gets or sets the weights for the convolution. |
| Zone | (Inherited from NSObject) |