Skip to content

Instantly share code, notes, and snippets.

@TyrfingMjolnir
Last active February 23, 2024 23:12
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TyrfingMjolnir/72d965afb5710e76a88b0c8cfd52dd77 to your computer and use it in GitHub Desktop.
Save TyrfingMjolnir/72d965afb5710e76a88b0c8cfd52dd77 to your computer and use it in GitHub Desktop.
This snippet prints the attributes of Core Image filters for the version of the system you are on. https://asciinema.org/a/5tHQvp6g8LUZXnzvRdg7hYqb8
import CoreImage
# CoreImage works with MacOS X, iOS, and iOS for AppleTV
CIFilter.filterNames( inCategory: nil ).map {
let filter = CIFilter( name: $0 )
print( "\n\n\n>>> \($0): \n ---" )
print( filter?.attributes ?? "" )
}
CIFilter.filterNames( inCategory: nil ).map {
let filter = CIFilter( name: $0 )
print( filter?.description ?? "" )
}
>>> CIAccordionFoldTransition:
---
["inputBottomHeight": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = "Bottom Height";
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The duration of the effect.";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "inputFoldShadowAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.1";
CIAttributeDisplayName = "Fold Shadow Amount";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 8, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8875a180>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAccordionFoldTransition, "inputNumberOfFolds": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 3;
CIAttributeDisplayName = "Number of Folds";
CIAttributeMax = 50;
CIAttributeMin = 1;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeFilterDisplayName": Accordion Fold Transition, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIAccordionFoldTransition]
>>> CIAdditionCompositing:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad884a5d20>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Addition, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAdditionCompositing, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIAdditionCompositing, "CIAttributeFilterAvailable_iOS": 5]
>>> CIAffineClamp:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAffineClamp, "CIAttributeFilterName": CIAffineClamp, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b01250>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputTransform": {
CIAttributeClass = NSAffineTransform;
CIAttributeDefault = "<NSAffineTransform: 0x7fad89b012a0>";
CIAttributeDescription = "The transform to apply to the image.";
CIAttributeDisplayName = Transform;
CIAttributeIdentity = "<NSAffineTransform: 0x7fad89b00e80>";
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Affine Clamp]
>>> CIAffineTile:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8c887d20>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputTransform": {
CIAttributeClass = NSAffineTransform;
CIAttributeDefault = "<NSAffineTransform: 0x7fad8c8870b0>";
CIAttributeDescription = "The transform to apply to the image.";
CIAttributeDisplayName = Transform;
CIAttributeIdentity = "<NSAffineTransform: 0x7fad8c887270>";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAffineTile, "CIAttributeFilterDisplayName": Affine Tile, "CIAttributeFilterName": CIAffineTile, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 6]
>>> CIAffineTransform:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAffineTransform, "CIAttributeFilterAvailable_iOS": 5, "inputTransform": {
CIAttributeClass = NSAffineTransform;
CIAttributeDefault = "<NSAffineTransform: 0x7fad89868ff0>";
CIAttributeDescription = "A transform to apply to the image.";
CIAttributeDisplayName = Transform;
CIAttributeIdentity = "<NSAffineTransform: 0x7fad89868ff0>";
CIAttributeType = CIAttributeTypeTransform;
}, "CIAttributeFilterDisplayName": Affine Transform, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89868590>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIAffineTransform]
>>> CIAreaAverage:
---
["CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaAverage, "CIAttributeFilterName": CIAreaAverage, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterDisplayName": Area Average, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a01c40>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIAreaHistogram:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad88488b80>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterName": CIAreaHistogram, "CIAttributeFilterDisplayName": Area Histogram, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that, after intersection with the image extent, specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaHistogram, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The scale value to use for the histogram values. If the scale is 1.0, then the bins in the resulting image will add up to 1.0.";
CIAttributeDisplayName = Scale;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image whose histogram you want to calculate.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 8, "inputCount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 64;
CIAttributeDescription = "The number of bins for the histogram. This value will determine the width of the output image.";
CIAttributeDisplayName = Count;
CIAttributeMax = 2048;
CIAttributeMin = 1;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 10;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIAreaMaximum:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8983d370>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaMaximum, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIAreaMaximum, "CIAttributeFilterDisplayName": Area Maximum, "CIAttributeFilterAvailable_iOS": 9, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}]
>>> CIAreaMaximumAlpha:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaMaximumAlpha, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterName": CIAreaMaximumAlpha, "CIAttributeFilterDisplayName": Area Maximum Alpha, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884a5cc0>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}]
>>> CIAreaMinimum:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaMinimum, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterName": CIAreaMinimum, "CIAttributeFilterDisplayName": Area Minimum, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88759310>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}]
>>> CIAreaMinimumAlpha:
---
["CIAttributeFilterAvailable_Mac": 10.5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaMinimumAlpha, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89857210>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Area Minimum Alpha, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterName": CIAreaMinimumAlpha]
>>> CIAreaMinMax:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaMinMax, "CIAttributeFilterDisplayName": Area Min and Max, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 12, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89864850>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterName": CIAreaMinMax, "CIAttributeFilterAvailable_Mac": 10.14]
>>> CIAreaMinMaxRed:
---
["CIAttributeFilterAvailable_iOS": 11, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIAreaMinMaxRed, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAreaMinMaxRed, "CIAttributeFilterDisplayName": Area Min and Max Red, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a02c20>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIAttributedTextImageGenerator:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8986c100>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAttributedTextImageGenerator, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterName": CIAttributedTextImageGenerator, "CIAttributeFilterDisplayName": Attributed Text Image Generator, "inputText": {
CIAttributeClass = NSAttributedString;
CIAttributeDisplayName = Text;
}, "inputScaleFactor": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = "Scale Factor";
CIAttributeMin = 0;
CIAttributeSliderMax = 4;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIAztecCodeGenerator:
---
["inputCompactStyle": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "Force a compact style Aztec code to @YES or @NO. Set to nil for automatic.";
CIAttributeDisplayName = "Compact Style";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
}, "inputLayers": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "Aztec layers value between 1 and 32. Set to nil for automatic.";
CIAttributeDisplayName = Layers;
CIAttributeMax = 32;
CIAttributeMin = 1;
CIAttributeSliderMax = 32;
CIAttributeSliderMin = 1;
}, "CIAttributeFilterName": CIAztecCodeGenerator, "CIAttributeFilterAvailable_iOS": 8, "inputMessage": {
CIAttributeClass = NSData;
CIAttributeDescription = "The message to encode in the Aztec Barcode";
CIAttributeDisplayName = Message;
}, "CIAttributeFilterDisplayName": Aztec Code Generator, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIAztecCodeGenerator, "CIAttributeFilterAvailable_Mac": 10.10, "inputCorrectionLevel": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 23;
CIAttributeDescription = "Aztec error correction value between 5 and 95";
CIAttributeDisplayName = "Correction Level";
CIAttributeMax = 95;
CIAttributeMin = 5;
CIAttributeSliderMax = 95;
CIAttributeSliderMin = 5;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884a60c0>(
CICategoryGenerator,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIBarcodeGenerator:
---
["CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBarcodeGenerator, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterDisplayName": Barcode Generator, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c889c10>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputBarcodeDescriptor": {
CIAttributeClass = CIBarcodeDescriptor;
CIAttributeDescription = "The CIBarcodeDescription object to generate an image for.";
CIAttributeDisplayName = "Barcode Descriptor";
}, "CIAttributeFilterName": CIBarcodeGenerator]
>>> CIBarsSwipeTransition:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBarsSwipeTransition, "inputBarOffset": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The offset of one bar with respect to another";
CIAttributeDisplayName = "Bar Offset";
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c88d760>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Bars Swipe Transition, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 30;
CIAttributeDescription = "The width of each bar.";
CIAttributeDisplayName = Width;
CIAttributeMin = 2;
CIAttributeSliderMax = 300;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CIBarsSwipeTransition, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "3.141592653589793";
CIAttributeDescription = "The angle (in radians) of the bars.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "6.283185307179586";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeAngle;
}]
>>> CIBicubicScaleTransform:
---
["inputAspectRatio": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The additional horizontal scaling factor to use on the image.";
CIAttributeDisplayName = "Aspect Ratio";
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = "0.5";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBicubicScaleTransform, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The scaling factor to use on the image. Values less than 1.0 scale down the images. Values greater than 1.0 scale up the image.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = "0.05";
CIAttributeType = CIAttributeTypeScalar;
}, "inputB": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Specifies the value of B to use for the cubic resampling function.";
CIAttributeDisplayName = B;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Bicubic Scale Transform, "CIAttributeFilterAvailable_iOS": 11, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a04d80>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeFilterName": CIBicubicScaleTransform, "inputC": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.75";
CIAttributeDescription = "Specifies the value of C to use for the cubic resampling function.";
CIAttributeDisplayName = C;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIBlendWithAlphaMask:
---
["CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8986e1c0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIBlendWithAlphaMask, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBlendWithAlphaMask, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterDisplayName": Blend With Alpha Mask, "inputMaskImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A masking image.";
CIAttributeDisplayName = "Mask Image";
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIBlendWithBlueMask:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBlendWithBlueMask, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIBlendWithBlueMask, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8871aa40>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Blend With Blue Mask, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.13, "inputMaskImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A masking image.";
CIAttributeDisplayName = "Mask Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 11]
>>> CIBlendWithMask:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBlendWithMask, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88504900>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 6, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputMaskImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A grayscale mask. When a mask value is 0.0, the result is the background. When the mask value is 1.0, the result is the image.";
CIAttributeDisplayName = "Mask Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Blend With Mask, "CIAttributeFilterName": CIBlendWithMask]
>>> CIBlendWithRedMask:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8871cdf0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 11, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBlendWithRedMask, "CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeFilterDisplayName": Blend With Red Mask, "inputMaskImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A masking image.";
CIAttributeDisplayName = "Mask Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIBlendWithRedMask]
>>> CIBloom:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterDisplayName": Bloom, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBloom, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884a9f60>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The radius determines how many pixels are used to create the effect. The larger the radius, the greater the effect.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CIBloom, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The intensity of the effect. A value of 0.0 is no effect. A value of 1.0 is the maximum effect.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIBokehBlur:
---
["CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBokehBlur, "inputRingSize": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.1";
CIAttributeDescription = "The size of extra emphasis at the ring of the bokeh";
CIAttributeDisplayName = "Ring Size";
CIAttributeMax = "0.2";
CIAttributeMin = 0;
CIAttributeSliderMax = "0.2";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputRingAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The amount of extra emphasis at the ring of the bokeh.";
CIAttributeDisplayName = "Ring Amount";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIBokehBlur, "inputSoftness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Softness;
CIAttributeMax = 10;
CIAttributeMin = 0;
CIAttributeSliderMax = "0.4";
CIAttributeSliderMin = "0.25";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Bokeh Blur, "CIAttributeFilterAvailable_iOS": 11, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c890960>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 20;
CIAttributeDescription = "The radius determines how many pixels are used to create the blur. The larger the radius, the blurrier the result.";
CIAttributeDisplayName = Radius;
CIAttributeMax = 500;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIBoxBlur:
---
["CIAttributeFilterAvailable_iOS": 9, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The radius determines how many pixels are used to create the blur. The larger the radius, the blurrier the result.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89870790>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIBoxBlur, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBoxBlur, "CIAttributeFilterDisplayName": Box Blur]
>>> CIBumpDistortion:
---
["CIAttributeFilterName": CIBumpDistortion, "CIAttributeFilterDisplayName": Bump Distortion, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 600;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The scale of the effect determines the curvature of the bump. A value of 0.0 has no effect. Positive values create an outward bump; negative values create an inward bump.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "-1";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBumpDistortion, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c894d00>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 6, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIBumpDistortionLinear:
---
["inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 600;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8986ffa0>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIBumpDistortionLinear, "CIAttributeFilterDisplayName": Bump Distortion Linear, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The scale of the effect.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 1;
CIAttributeMin = "-1";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the line around which the distortion occurs.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "6.283185307179586";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterAvailable_iOS": 6, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIBumpDistortionLinear]
>>> CICameraCalibrationLensCorrection:
---
["CIAttributeFilterDisplayName": Lens Correction for AVC, "CIAttributeFilterAvailable_iOS": 12, "CIAttributeFilterAvailable_Mac": 10.14, "inputUseInverseLookUpTable": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Boolean value used to select the Look Up Table from the AVCameraCalibrationData";
CIAttributeDisplayName = "Use Inverse Look Up Table";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICameraCalibrationLensCorrection, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c897800>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputAVCameraCalibrationData": {
CIAttributeClass = AVCameraCalibrationData;
CIAttributeDescription = "AVCameraCalibrationData for the correction. Will be set from the inputImage if available and can be overridden here.";
CIAttributeDisplayName = "Calibration Data object of type AVCameraCalibrationData";
}, "CIAttributeFilterName": CICameraCalibrationLensCorrection]
>>> CICheckerboardGenerator:
---
["inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 80;
CIAttributeDescription = "The width of the squares in the pattern.";
CIAttributeDisplayName = Width;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Checkerboard, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICheckerboardGenerator, "CIAttributeFilterName": CICheckerboardGenerator, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The sharpness of the edges in pattern. The smaller the value, the more blurry the pattern. Values range from 0.0 to 1.0.";
CIAttributeDisplayName = Sharpness;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c899500 (1 1 1 1) devicergb>";
CIAttributeDescription = "A color to use for the first set of squares.";
CIAttributeDisplayName = "Color 1";
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c898890>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 5, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c899640 (0 0 0 1) devicergb>";
CIAttributeDescription = "A color to use for the second set of squares.";
CIAttributeDisplayName = "Color 2";
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}]
>>> CICircleSplashDistortion:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8871fc80>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICircleSplashDistortion, "CIAttributeFilterName": CICircleSplashDistortion, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Circle Splash Distortion, "CIAttributeFilterAvailable_iOS": 6, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 150;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CICircularScreen:
---
["inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The distance between each circle in the pattern.";
CIAttributeDisplayName = Width;
CIAttributeMin = 1;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88720ee0>(
CICategoryHalftoneEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CICircularScreen, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICircularScreen, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the circular screen pattern";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Circular Screen, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.7";
CIAttributeDescription = "The sharpness of the circles. The larger the value, the sharper the circles.";
CIAttributeDisplayName = Sharpness;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CICircularWrap:
---
["inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 150;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 600;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CICircularWrap, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the effect.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterDisplayName": Circular Wrap Distortion, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884ae0f0>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 9, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICircularWrap, "CIAttributeFilterAvailable_Mac": 10.5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIClamp:
---
["CIAttributeFilterName": CIClamp, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.12, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that defines the extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIClamp, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88761370>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 10, "CIAttributeFilterDisplayName": Clamp]
>>> CICMYKHalftone:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad88762060>(
CICategoryHalftoneEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.7";
CIAttributeDescription = "The sharpness of the pattern. The larger the value, the sharper the pattern.";
CIAttributeDisplayName = Sharpness;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
CIUIParameterSet = CIUISetBasic;
}, "CIAttributeFilterDisplayName": CMYK Halftone, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 9, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The distance between dots in the pattern.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 6;
CIAttributeMin = "-2";
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeDistance;
CIUIParameterSet = CIUISetBasic;
}, "inputGCR": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The gray component replacement value. The value can vary from 0.0 (none) to 1.0.";
CIAttributeDisplayName = "Gray Component Replacement";
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
CIUIParameterSet = CIUISetIntermediate;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICMYKHalftone, "inputUCR": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The under color removal value. The value can vary from 0.0 to 1.0. ";
CIAttributeDisplayName = "Under Color Removal";
CIAttributeIdentity = "0.5";
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
CIUIParameterSet = CIUISetIntermediate;
}, "CIAttributeFilterName": CICMYKHalftone, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the halftone pattern";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CICode128BarcodeGenerator:
---
["inputMessage": {
CIAttributeClass = NSData;
CIAttributeDescription = "The message to encode in the Code 128 Barcode";
CIAttributeDisplayName = Message;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICode128BarcodeGenerator, "CIAttributeFilterAvailable_iOS": 8, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeFilterName": CICode128BarcodeGenerator, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88765df0>(
CICategoryGenerator,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputQuietSpace": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 7;
CIAttributeDescription = "The number of empty white pixels that should surround the barcode.";
CIAttributeDisplayName = "Quiet Space";
CIAttributeMax = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 20;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputBarcodeHeight": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 32;
CIAttributeDescription = "The height of the generated barcode in pixels.";
CIAttributeDisplayName = "Barcode Height";
CIAttributeMax = 500;
CIAttributeMin = 1;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Code 128 Barcode Generator]
>>> CIColorBlendMode:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorBlendMode, "CIAttributeFilterName": CIColorBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884b1340>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Color Blend Mode, "CIAttributeFilterAvailable_Mac": 10.4, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIColorBurnBlendMode:
---
["CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b041e0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorBurnBlendMode, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Color Burn Blend Mode, "CIAttributeFilterName": CIColorBurnBlendMode]
>>> CIColorClamp:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputMinComponents": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0]";
CIAttributeDescription = "Lower clamping values";
CIAttributeDisplayName = "Min Components";
}, "CIAttributeFilterAvailable_Mac": 10.9, "inputMaxComponents": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[1 1 1 1]";
CIAttributeDescription = "Higher clamping values";
CIAttributeDisplayName = "Max Components";
}, "CIAttributeFilterDisplayName": Color Clamp, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterName": CIColorClamp, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorClamp, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884b04d0>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIColorControls:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorControls, "CIAttributeFilterAvailable_iOS": 5, "inputSaturation": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The amount of saturation to apply. The larger the value, the more saturated the result.";
CIAttributeDisplayName = Saturation;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Color Controls, "inputBrightness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The amount of brightness to apply. The larger the value, the brighter the result.";
CIAttributeDisplayName = Brightness;
CIAttributeIdentity = 0;
CIAttributeMin = "-1";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "-1";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIColorControls, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c89db60>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "inputContrast": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The amount of contrast to apply. The larger the value, the more contrast in the resulting image.";
CIAttributeDisplayName = Contrast;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 4;
CIAttributeSliderMin = "0.25";
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIColorCrossPolynomial:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884b2cc0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Color Cross Polynomial, "inputBlueCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 1 0 0 0 0 0 0 0]";
CIAttributeDescription = "Polynomial coefficients for blue channel";
CIAttributeDisplayName = "Blue Coefficients";
CIAttributeIdentity = "[0 0 1 0 0 0 0 0 0 0]";
}, "inputGreenCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1 0 0 0 0 0 0 0 0]";
CIAttributeDescription = "Polynomial coefficients for green channel";
CIAttributeDisplayName = "Green Coefficients";
CIAttributeIdentity = "[0 1 0 0 0 0 0 0 0 0]";
}, "inputRedCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[1 0 0 0 0 0 0 0 0 0]";
CIAttributeDescription = "Polynomial coefficients for red channel";
CIAttributeDisplayName = "Red Coefficients";
CIAttributeIdentity = "[1 0 0 0 0 0 0 0 0 0]";
}, "CIAttributeFilterName": CIColorCrossPolynomial, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorCrossPolynomial, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterAvailable_iOS": 7]
>>> CIColorCube:
---
["inputCubeDimension": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 2;
CIAttributeDisplayName = "Cube Dimension";
CIAttributeIdentity = 2;
CIAttributeMax = 128;
CIAttributeMin = 2;
CIAttributeType = CIAttributeTypeCount;
}, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8986b690>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "inputCubeData": {
CIAttributeClass = NSData;
CIAttributeDefault = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
CIAttributeDescription = "Data containing a 3-dimensional color table of floating-point premultiplied RGBA values. The cells are organized in a standard ordering. The columns and rows of the data are indexed by red and green, respectively. Each data plane is followed by the next higher plane in the data, with planes indexed by blue.";
CIAttributeDisplayName = "Cube Data";
CIAttributeIdentity = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
}, "CIAttributeFilterName": CIColorCube, "CIAttributeFilterDisplayName": Color Cube, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorCube, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIColorCubesMixedWithMask:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Color Cubes Mixed With Mask, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorCubesMixedWithMask, "inputCube1Data": {
CIAttributeClass = NSData;
CIAttributeDefault = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
CIAttributeDescription = "Data containing a 3-dimensional color table of floating-point premultiplied RGBA values. The cells are organized in a standard ordering. The columns and rows of the data are indexed by red and green, respectively. Each data plane is followed by the next higher plane in the data, with planes indexed by blue.";
CIAttributeDisplayName = "Cube 1 Data";
CIAttributeIdentity = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8990ab60>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterName": CIColorCubesMixedWithMask, "inputMaskImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A masking image.";
CIAttributeDisplayName = "Mask Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputColorSpace": {
CIAttributeClass = NSObject;
CIAttributeDisplayName = "Color Space";
}, "CIAttributeFilterAvailable_Mac": 10.13, "inputCubeDimension": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 2;
CIAttributeDisplayName = "Cube Dimension";
CIAttributeIdentity = 2;
CIAttributeMax = 128;
CIAttributeMin = 2;
CIAttributeType = CIAttributeTypeCount;
}, "inputCube0Data": {
CIAttributeClass = NSData;
CIAttributeDefault = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
CIAttributeDescription = "Data containing a 3-dimensional color table of floating-point premultiplied RGBA values. The cells are organized in a standard ordering. The columns and rows of the data are indexed by red and green, respectively. Each data plane is followed by the next higher plane in the data, with planes indexed by blue.";
CIAttributeDisplayName = "Cube 0 Data";
CIAttributeIdentity = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
}]
>>> CIColorCubeWithColorSpace:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad88767630>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputCubeData": {
CIAttributeClass = NSData;
CIAttributeDefault = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
CIAttributeDescription = "Data containing a 3-dimensional color table of floating-point premultiplied RGBA values. The cells are organized in a standard ordering. The columns and rows of the data are indexed by red and green, respectively. Each data plane is followed by the next higher plane in the data, with planes indexed by blue.";
CIAttributeDisplayName = "Cube Data";
CIAttributeIdentity = {length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f };
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorCubeWithColorSpace, "CIAttributeFilterAvailable_Mac": 10.9, "inputCubeDimension": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 2;
CIAttributeDisplayName = "Cube Dimension";
CIAttributeIdentity = 2;
CIAttributeMax = 128;
CIAttributeMin = 2;
CIAttributeType = CIAttributeTypeCount;
}, "CIAttributeFilterDisplayName": Color Cube with ColorSpace, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIColorCubeWithColorSpace, "CIAttributeFilterAvailable_iOS": 7, "inputColorSpace": {
CIAttributeClass = NSObject;
CIAttributeDisplayName = "Color Space";
}]
>>> CIColorCurves:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorCurves, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterName": CIColorCurves, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputCurvesData": {
CIAttributeClass = NSData;
CIAttributeDefault = {length = 36, bytes = 0x00000000 00000000 00000000 0000003f ... 0000803f 0000803f };
CIAttributeDisplayName = "Curves Data";
}, "inputColorSpace": {
CIAttributeClass = NSObject;
CIAttributeDisplayName = "Color Space";
}, "CIAttributeFilterAvailable_Mac": 10.13, "inputCurvesDomain": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1]";
CIAttributeDisplayName = "Curves Domain";
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8a13a0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Color Curves]
>>> CIColorDodgeBlendMode:
---
["inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884b8470>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Color Dodge Blend Mode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIColorDodgeBlendMode, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorDodgeBlendMode]
>>> CIColorInvert:
---
["CIAttributeFilterName": CIColorInvert, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89873070>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Color Invert, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorInvert, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIColorMap:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Color Map, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorMap, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884b9410>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputGradientImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image data from this image transforms the source image values.";
CIAttributeDisplayName = "Gradient Image";
CIAttributeType = CIAttributeTypeGradient;
}, "CIAttributeFilterName": CIColorMap, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIColorMatrix:
---
["inputAVector": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 1]";
CIAttributeDescription = "The amount of alpha to multiply the source color values by.";
CIAttributeDisplayName = "Alpha Vector";
CIAttributeIdentity = "[0 0 0 1]";
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputGVector": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1 0 0]";
CIAttributeDescription = "The amount of green to multiply the source color values by.";
CIAttributeDisplayName = "Green Vector";
CIAttributeIdentity = "[0 1 0 0]";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorMatrix, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterName": CIColorMatrix, "inputRVector": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[1 0 0 0]";
CIAttributeDescription = "The amount of red to multiply the source color values by.";
CIAttributeDisplayName = "Red Vector";
CIAttributeIdentity = "[1 0 0 0]";
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputBiasVector": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0]";
CIAttributeDescription = "A vector that\U2019s added to each color component.";
CIAttributeDisplayName = "Bias Vector";
CIAttributeIdentity = "[0 0 0 0]";
}, "CIAttributeFilterDisplayName": Color Matrix, "inputBVector": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 1 0]";
CIAttributeDescription = "The amount of blue to multiply the source color values by.";
CIAttributeDisplayName = "Blue Vector";
CIAttributeIdentity = "[0 0 1 0]";
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884bb8a0>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
]
>>> CIColorMonochrome:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Color Monochrome, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad884bd510 (0.6 0.45 0.3 1) devicergb>";
CIAttributeDescription = "The monochrome color to apply to the image.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeOpaqueColor;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorMonochrome, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The intensity of the monochrome effect. A value of 1.0 creates a monochrome image using the supplied color. A value of 0.0 has no effect on the image.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884bdd40>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIColorMonochrome]
>>> CIColorPolynomial:
---
["CIAttributeFilterAvailable_Mac": 10.9, "inputBlueCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1 0 0]";
CIAttributeDescription = "Polynomial coefficients for blue channel";
CIAttributeDisplayName = "Blue Coefficients";
CIAttributeIdentity = "[0 1 0 0]";
}, "inputGreenCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1 0 0]";
CIAttributeDescription = "Polynomial coefficients for green channel";
CIAttributeDisplayName = "Green Coefficients";
CIAttributeIdentity = "[0 1 0 0]";
}, "inputRedCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1 0 0]";
CIAttributeDescription = "Polynomial coefficients for red channel";
CIAttributeDisplayName = "Red Coefficients";
CIAttributeIdentity = "[0 1 0 0]";
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8a35f0>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 7, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Color Polynomial, "CIAttributeFilterName": CIColorPolynomial, "inputAlphaCoefficients": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 1 0 0]";
CIAttributeDescription = "Polynomial coefficients for alpha channel";
CIAttributeDisplayName = "Alpha Coefficients";
CIAttributeIdentity = "[0 1 0 0]";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorPolynomial]
>>> CIColorPosterize:
---
["CIAttributeFilterName": CIColorPosterize, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColorPosterize, "inputLevels": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The number of brightness levels to use for each color component. Lower values result in a more extreme poster effect.";
CIAttributeDisplayName = Levels;
CIAttributeIdentity = 300;
CIAttributeMin = 1;
CIAttributeSliderMax = 30;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Color Posterize, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b05550>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIColumnAverage:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8a61d0>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterDisplayName": Column Average, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIColumnAverage, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterName": CIColumnAverage]
>>> CIComicEffect:
---
["CIAttributeFilterName": CIComicEffect, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterDisplayName": Comic Effect, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887696a0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIComicEffect, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 9]
>>> CIConstantColorGenerator:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8876bcf0>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8876c880 (1 0 0 1) devicergb>";
CIAttributeDescription = "The color to generate.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIConstantColorGenerator, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Constant Color, "CIAttributeFilterName": CIConstantColorGenerator]
>>> CIConvolution3X3:
---
["inputBias": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Bias;
CIAttributeIdentity = 0;
}, "inputWeights": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0 1 0 0 0 0]";
CIAttributeDisplayName = Weights;
CIAttributeIdentity = "[0 0 0 0 1 0 0 0 0]";
}, "CIAttributeFilterDisplayName": 3 by 3 convolution, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIConvolution3X3, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89878e40>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIConvolution3X3, "CIAttributeFilterAvailable_Mac": 10.9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 7]
>>> CIConvolution5X5:
---
["CIAttributeFilterName": CIConvolution5X5, "CIAttributeFilterAvailable_Mac": 10.9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIConvolution5X5, "inputBias": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Bias;
CIAttributeIdentity = 0;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89879f50>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputWeights": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0]";
CIAttributeDisplayName = Weights;
CIAttributeIdentity = "[0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0]";
}, "CIAttributeFilterDisplayName": 5 by 5 convolution, "CIAttributeFilterAvailable_iOS": 7]
>>> CIConvolution7X7:
---
["CIAttributeFilterAvailable_iOS": 9, "inputBias": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Bias;
CIAttributeIdentity = 0;
}, "inputWeights": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]";
CIAttributeDisplayName = Weights;
CIAttributeIdentity = "[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]";
}, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterName": CIConvolution7X7, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIConvolution7X7, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884bdec0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": 7 by 7 convolution, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIConvolution9Horizontal:
---
["CIAttributeFilterName": CIConvolution9Horizontal, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b06c00>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputBias": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Bias;
CIAttributeIdentity = 0;
}, "CIAttributeFilterAvailable_Mac": 10.9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIConvolution9Horizontal, "inputWeights": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0 1 0 0 0 0]";
CIAttributeDisplayName = Weights;
CIAttributeIdentity = "[0 0 0 0 1 0 0 0 0]";
}, "CIAttributeFilterDisplayName": Horizontal 9 Convolution]
>>> CIConvolution9Vertical:
---
["inputBias": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Bias;
CIAttributeIdentity = 0;
}, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterDisplayName": Vertical 9 Convolution, "CIAttributeFilterAvailable_Mac": 10.9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputWeights": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0 1 0 0 0 0]";
CIAttributeDisplayName = Weights;
CIAttributeIdentity = "[0 0 0 0 1 0 0 0 0]";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIConvolution9Vertical, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a08b60>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIConvolution9Vertical]
>>> CICopyMachineTransition:
---
["CIAttributeFilterDisplayName": Copy Machine, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICopyMachineTransition, "CIAttributeFilterAvailable_iOS": 6, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the copier light.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = "6.283185307179586";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterName": CICopyMachineTransition, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 300 300]";
CIAttributeDescription = "A rectangle that defines the extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad89880f70 (0.6 1 0.8 1) devicergb>";
CIAttributeDescription = "The color of the copier light.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeOpaqueColor;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8987ffc0>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 200;
CIAttributeDescription = "The width of the copier light. ";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 200;
CIAttributeMin = "0.1";
CIAttributeSliderMax = 500;
CIAttributeSliderMin = "0.1";
CIAttributeType = CIAttributeTypeDistance;
}, "inputOpacity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.3";
CIAttributeDescription = "The opacity of the copier light. A value of 0.0 is transparent. A value of 1.0 is opaque.";
CIAttributeDisplayName = Opacity;
CIAttributeIdentity = "1.3";
CIAttributeMin = 0;
CIAttributeSliderMax = 3;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CICoreMLModelFilter:
---
["CIAttributeFilterDisplayName": CoreML Model Filter, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89883d10>(
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryStylize
)
, "CIAttributeFilterAvailable_Mac": 10.14, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICoreMLModelFilter, "inputHeadIndex": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "A number to specify which output of a multi-head CoreML model should be used for applying effect on the image.";
CIAttributeDisplayName = "Head Index";
CIAttributeMax = 10;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeInteger;
}, "inputModel": {
CIAttributeClass = MLModel;
CIAttributeDescription = "The CoreML model to be used for applying effect on the image.";
CIAttributeDisplayName = Model;
}, "CIAttributeFilterName": CICoreMLModelFilter, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputSoftmaxNormalization": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "A boolean value to specify that Softmax normalization should be applied to the output of the model.";
CIAttributeDisplayName = "Softmax Normalization";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeBoolean;
}, "CIAttributeFilterAvailable_iOS": 12]
>>> CICrop:
---
["CIAttributeFilterName": CICrop, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89886110>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputRectangle": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[-8.98847e+307 -8.98847e+307 1.79769e+308 1.79769e+308]";
CIAttributeDescription = "The rectangle that specifies the crop to apply to the image.";
CIAttributeDisplayName = Rectangle;
CIAttributeIdentity = "[-8.98847e+307 -8.98847e+307 1.79769e+308 1.79769e+308]";
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterDisplayName": Crop, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICrop, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CICrystallize:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CICrystallize, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8a98e0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CICrystallize, "CIAttributeFilterAvailable_iOS": 9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Crystallize, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 20;
CIAttributeDescription = "The radius determines how many pixels are used to create the effect. The larger the radius, the larger the resulting crystals.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIDarkenBlendMode:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad884c9040>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Darken Blend Mode, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDarkenBlendMode, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIDarkenBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIDepthBlurEffect:
---
["inputRightEyePositions": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[-1 -1]";
CIAttributeDisplayName = "Right Eye Positions";
CIAttributeType = CIAttributeTypePosition;
}, "inputAuxDataMetadata": {
CIAttributeClass = CGImageMetadataRef;
CIAttributeDisplayName = "Aux Data Metadata";
}, "CIAttributeFilterName": CIDepthBlurEffect, "CIAttributeFilterDisplayName": Depth Blur Effect, "inputDisparityImage": {
CIAttributeClass = CIImage;
CIAttributeDisplayName = "Disparity Image";
}, "inputNosePositions": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[-1 -1]";
CIAttributeDisplayName = "Nose Positions";
CIAttributeType = CIAttributeTypePosition;
}, "inputHairImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A matting image.";
CIAttributeDisplayName = "Hair Image";
}, "inputCalibrationData": {
CIAttributeClass = AVCameraCalibrationData;
CIAttributeDisplayName = "Calibration Data";
}, "inputAperture": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Aperture;
CIAttributeMax = 22;
CIAttributeMin = 0;
CIAttributeSliderMax = 22;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89888660>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputScaleFactor": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = "Scale Factor";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.13, "inputMatteImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A matting image.";
CIAttributeDisplayName = "Matte Image";
}, "inputLeftEyePositions": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[-1 -1]";
CIAttributeDisplayName = "Left Eye Positions";
CIAttributeType = CIAttributeTypePosition;
}, "inputFocusRect": {
CIAttributeClass = CIVector;
CIAttributeDisplayName = "Focus Rectangle";
CIAttributeIdentity = "[-8.98847e+307 -8.98847e+307 1.79769e+308 1.79769e+308]";
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDepthBlurEffect, "inputChinPositions": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[-1 -1]";
CIAttributeDisplayName = "Chin Positions";
CIAttributeType = CIAttributeTypePosition;
}, "inputLumaNoiseScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = "Luma Noise Scale";
CIAttributeMax = "0.1";
CIAttributeMin = 0;
CIAttributeSliderMax = "0.1";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputShape": {
CIAttributeClass = NSString;
CIAttributeDisplayName = Shape;
}, "CIAttributeFilterAvailable_iOS": 11]
>>> CIDepthOfField:
---
["inputPoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 300]";
CIAttributeDisplayName = "Point 0";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8990a500>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputPoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[300 300]";
CIAttributeDisplayName = "Point 1";
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDepthOfField, "inputUnsharpMaskIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDisplayName = "Unsharp Mask Intensity";
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIDepthOfField, "inputSaturation": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.5";
CIAttributeDescription = "The amount to adjust the saturation.";
CIAttributeDisplayName = Saturation;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 9, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 30;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.6, "inputUnsharpMaskRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "2.5";
CIAttributeDisplayName = "Unsharp Mask Radius";
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Depth of Field]
>>> CIDepthToDisparity:
---
["CIAttributeFilterAvailable_Mac": 10.13, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The input depth data image to convert to disparity data.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDepthToDisparity, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8981b290>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterName": CIDepthToDisparity, "CIAttributeFilterDisplayName": Depth To Disparity]
>>> CIDifferenceBlendMode:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDifferenceBlendMode, "CIAttributeFilterDisplayName": Difference Blend Mode, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88768f20>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIDifferenceBlendMode, "CIAttributeFilterAvailable_iOS": 5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIDiscBlur:
---
["inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 8;
CIAttributeDescription = "The radius determines how many pixels are used to create the blur. The larger the radius, the blurrier the result.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CIDiscBlur, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDiscBlur, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88774e50>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Disc Blur, "CIAttributeFilterAvailable_Mac": 10.5]
>>> CIDisintegrateWithMaskTransition:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad88773ab0>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputShadowOffset": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 -10]";
CIAttributeDescription = "The offset of the shadow created by the mask.";
CIAttributeDisplayName = "Shadow Offset";
CIAttributeIdentity = "[0 0]";
CIAttributeType = CIAttributeTypeOffset;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDisintegrateWithMaskTransition, "CIAttributeFilterName": CIDisintegrateWithMaskTransition, "inputShadowDensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.65";
CIAttributeDescription = "The density of the shadow created by the mask.";
CIAttributeDisplayName = "Shadow Density";
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputShadowRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 8;
CIAttributeDescription = "The radius of the shadow created by the mask.";
CIAttributeDisplayName = "Shadow Radius";
CIAttributeMin = 0;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 6, "inputMaskImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "An image that defines the shape to use when disintegrating from the source to the target image.";
CIAttributeDisplayName = "Mask Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Disintegrate With Mask]
>>> CIDisparityToDepth:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDisparityToDepth, "CIAttributeFilterName": CIDisparityToDepth, "CIAttributeFilterDisplayName": Disparity To Depth, "CIAttributeFilterAvailable_iOS": 11, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The input disparity data image to convert to depth data.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8988cdf0>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.13]
>>> CIDisplacementDistortion:
---
["CIAttributeFilterName": CIDisplacementDistortion, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8988f870>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputDisplacementImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "An image whose grayscale values will be applied to the source image.";
CIAttributeDisplayName = "Displacement Image";
}, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 50;
CIAttributeDescription = "The amount of texturing of the resulting image. The larger the value, the greater the texturing.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDisplacementDistortion, "CIAttributeFilterDisplayName": Displacement Distortion]
>>> CIDissolveTransition:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884bb2f0>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDissolveTransition, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterDisplayName": Dissolve, "CIAttributeFilterName": CIDissolveTransition]
>>> CIDither:
---
["CIAttributeFilterAvailable_iOS": 12, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.1";
CIAttributeDescription = "The intensity of the effect.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMax = 5;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Dither, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad885069d0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIDither, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDither, "CIAttributeFilterAvailable_Mac": 10.14]
>>> CIDivideBlendMode:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad89b09720>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDivideBlendMode, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeFilterName": CIDivideBlendMode, "CIAttributeFilterDisplayName": Divide Blend Mode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 8]
>>> CIDocumentEnhancer:
---
["CIAttributeFilterAvailable_iOS": 13, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDocumentEnhancer, "CIAttributeFilterDisplayName": Document Enhancer, "inputAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The amount of enhancement.";
CIAttributeDisplayName = Amount;
CIAttributeMax = 10;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8877a340>(
CICategoryColorEffect,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIDocumentEnhancer, "CIAttributeFilterAvailable_Mac": 10.15]
>>> CIDotScreen:
---
["CIAttributeFilterName": CIDotScreen, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDotScreen, "CIAttributeFilterAvailable_iOS": 6, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.7";
CIAttributeDescription = "The sharpness of the pattern. The larger the value, the sharper the pattern.";
CIAttributeDisplayName = Sharpness;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the dot screen pattern";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8877bb20>(
CICategoryHalftoneEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Dot Screen, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The distance between dots in the pattern.";
CIAttributeDisplayName = Width;
CIAttributeMin = 1;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIDroste:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIDroste, "CIAttributeFilterName": CIDroste, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88503ab0>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputInsetPoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[200 200]";
CIAttributeDisplayName = "Inset Point 0";
CIAttributeType = CIAttributeTypePosition;
}, "inputPeriodicity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Periodicity;
CIAttributeMin = 1;
CIAttributeSliderMax = 5;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "inputZoom": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Zoom;
CIAttributeMin = "0.01";
CIAttributeSliderMax = 5;
CIAttributeSliderMin = "0.01";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Droste, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputStrands": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Strands;
CIAttributeMax = 10;
CIAttributeMin = "-10";
CIAttributeSliderMax = 2;
CIAttributeSliderMin = "-2";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.6, "inputInsetPoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[400 400]";
CIAttributeDisplayName = "Inset Point 1";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 9, "inputRotation": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDisplayName = Rotation;
CIAttributeSliderMax = "6.283185307179586";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeAngle;
}]
>>> CIEdgePreserveUpsampleFilter:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884cb370>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.12, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIEdgePreserveUpsampleFilter, "inputSmallImage": {
CIAttributeClass = CIImage;
CIAttributeDisplayName = "Small Image";
}, "inputLumaSigma": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.15";
CIAttributeDisplayName = "Luma Sigma";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Edge Preserve Upsample Filter, "inputSpatialSigma": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 3;
CIAttributeDisplayName = "Spatial Sigma";
CIAttributeMax = 5;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 10, "CIAttributeFilterName": CIEdgePreserveUpsampleFilter]
>>> CIEdges:
---
["CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterDisplayName": Edges, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIEdges, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884cd0f0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIEdges, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The intensity of the edges. The larger the value, the higher the intensity.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIEdgeWork:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterDisplayName": Edge Work, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89913060>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIEdgeWork, "CIAttributeFilterName": CIEdgeWork, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 3;
CIAttributeDescription = "The thickness of the edges. The larger the value, the thicker the edges.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 20;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIEightfoldReflectedTile:
---
["inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterDisplayName": Eightfold Reflected Tile, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIEightfoldReflectedTile, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.5, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIEightfoldReflectedTile, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884ce530>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIExclusionBlendMode:
---
["inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIExclusionBlendMode, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884cfb20>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Exclusion Blend Mode, "CIAttributeFilterName": CIExclusionBlendMode]
>>> CIExposureAdjust:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterName": CIExposureAdjust, "CIAttributeFilterDisplayName": Exposure Adjust, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIExposureAdjust, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputEV": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The amount to adjust the exposure of the image by. The larger the value, the brighter the exposure.";
CIAttributeDisplayName = EV;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = "-10";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89891a80>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
]
>>> CIFalseColor:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIFalseColor, "CIAttributeFilterAvailable_iOS": 5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIFalseColor, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898930c0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": False Color, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad89893130 (1 0.9 0.8 1) devicergb>";
CIAttributeDescription = "The second color to use for the color ramp.";
CIAttributeDisplayName = "Color 2";
CIAttributeType = CIAttributeTypeColor;
}, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad89893100 (0.3 0 0 1) devicergb>";
CIAttributeDescription = "The first color to use for the color ramp.";
CIAttributeDisplayName = "Color 1";
CIAttributeType = CIAttributeTypeColor;
}]
>>> CIFlashTransition:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 6, "inputStriationContrast": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.375";
CIAttributeDescription = "The contrast of the light rays emanating from the flash.";
CIAttributeDisplayName = "Striation Contrast";
CIAttributeMin = 0;
CIAttributeSliderMax = 5;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputFadeThreshold": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.85";
CIAttributeDescription = "The amount of fade between the flash and the target image. The higher the value, the more flash time and the less fade time.";
CIAttributeDisplayName = "Fade Threshold";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad89a0b150 (1 0.8 0.6 1) devicergb>";
CIAttributeDescription = "The color of the light rays emanating from the flash.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a0c180>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputStriationStrength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The strength of the light rays emanating from the flash.";
CIAttributeDisplayName = "Striation Strength";
CIAttributeMin = 0;
CIAttributeSliderMax = 3;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "CIAttributeFilterName": CIFlashTransition, "inputMaxStriationRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "2.58";
CIAttributeDescription = "The radius of the light rays emanating from the flash.";
CIAttributeDisplayName = "Maximum Striation Radius";
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIFlashTransition, "CIAttributeFilterDisplayName": Flash, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 300 300]";
CIAttributeDescription = "The extent of the flash.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIFourfoldReflectedTile:
---
["CIAttributeFilterName": CIFourfoldReflectedTile, "inputAcuteAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.570796326794897";
CIAttributeDescription = "The primary angle for the repeating reflected tile. Small values create thin diamond tiles, and higher values create fatter reflected tiles.";
CIAttributeDisplayName = "Acute Angle";
CIAttributeIdentity = "1.570796326794897";
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterDisplayName": Fourfold Reflected Tile, "CIAttributeFilterAvailable_iOS": 6, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898958f0>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.5, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIFourfoldReflectedTile]
>>> CIFourfoldRotatedTile:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8a2360>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIFourfoldRotatedTile, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterDisplayName": Fourfold Rotated Tile, "CIAttributeFilterName": CIFourfoldRotatedTile]
>>> CIFourfoldTranslatedTile:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterAvailable_Mac": 10.5, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CIFourfoldTranslatedTile, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIFourfoldTranslatedTile, "inputAcuteAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.570796326794897";
CIAttributeDescription = "The primary angle for the repeating translated tile. Small values create thin diamond tiles, and higher values create fatter translated tiles.";
CIAttributeDisplayName = "Acute Angle";
CIAttributeIdentity = "1.570796326794897";
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterDisplayName": Fourfold Translated Tile, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88781920>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIGaborGradients:
---
["CIAttributeFilterDisplayName": Gabor Gradients, "CIAttributeFilterAvailable_Mac": 10.15, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88784c40>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIGaborGradients, "CIAttributeFilterAvailable_iOS": 13, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGaborGradients]
>>> CIGammaAdjust:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGammaAdjust, "CIAttributeFilterDisplayName": Gamma Adjust, "inputPower": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "A gamma value to use to correct image brightness. The larger the value, the darker the result.";
CIAttributeDisplayName = Power;
CIAttributeIdentity = 1;
CIAttributeSliderMax = 4;
CIAttributeSliderMin = "0.25";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8ac0d0>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterName": CIGammaAdjust, "CIAttributeFilterAvailable_iOS": 5]
>>> CIGaussianBlur:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Gaussian Blur, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89899fa0>(
CICategoryBlur,
CICategoryStillImage,
CICategoryVideo,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 6, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The radius determines how many pixels are used to create the blur. The larger the radius, the blurrier the result.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGaussianBlur, "CIAttributeFilterName": CIGaussianBlur]
>>> CIGaussianGradient:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8989bd80>(
CICategoryGradient,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIGaussianGradient, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGaussianGradient, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8989bc40 (1 1 1 1) devicergb>";
CIAttributeDescription = "The first color to use in the gradient.";
CIAttributeDisplayName = "Color 1";
CIAttributeType = CIAttributeTypeColor;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 5, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8989cab0 (0 0 0 0) devicergb>";
CIAttributeDescription = "The second color to use in the gradient.";
CIAttributeDisplayName = "Color 2";
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The radius of the Gaussian distribution.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Gaussian Gradient]
>>> CIGlassDistortion:
---
["inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 200;
CIAttributeDescription = "The amount of texturing of the resulting image. The larger the value, the greater the texturing.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 500;
CIAttributeSliderMin = "0.01";
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CIGlassDistortion, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 8, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8982ec00>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGlassDistortion, "inputTexture": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A texture to apply to the source image.";
CIAttributeDisplayName = Texture;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Glass Distortion]
>>> CIGlassLozenge:
---
["inputRefraction": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.7";
CIAttributeDescription = "The refraction of the glass.";
CIAttributeDisplayName = Refraction;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 5;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8989c450>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Glass Lozenge, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputPoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[350 150]";
CIAttributeDescription = "The x and y position that defines the center of the circle at the other end of the lozenge.";
CIAttributeDisplayName = "Point 1";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 9, "inputPoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position that defines the center of the circle at one end of the lozenge.";
CIAttributeDisplayName = "Point 0";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIGlassLozenge, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGlassLozenge, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The radius of the lozenge. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIGlideReflectedTile:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8ad7c0>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Glide Reflected Tile, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGlideReflectedTile, "CIAttributeFilterName": CIGlideReflectedTile, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 6, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.5]
>>> CIGloom:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Gloom, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The intensity of the effect. A value of 0.0 is no effect. A value of 1.0 is the maximum effect.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIGloom, "CIAttributeFilterAvailable_iOS": 6, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The radius determines how many pixels are used to create the effect. The larger the radius, the greater the effect.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887850e0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGloom]
>>> CIGuidedFilter:
---
["CIAttributeFilterDisplayName": Guided Filter, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIGuidedFilter, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIGuidedFilter, "CIAttributeFilterAvailable_iOS": 12, "CIAttributeFilterAvailable_Mac": 10.14, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884d41a0>(
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputEpsilon": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.0001";
CIAttributeDisplayName = Epsilon;
CIAttributeSliderMax = "0.1";
CIAttributeSliderMin = "1e-09";
CIAttributeType = CIAttributeTypeScalar;
}, "inputGuideImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A larger image to use as a guide.";
CIAttributeDisplayName = "A larger image to use as a guide.";
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "A small image to upsample.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIHardLightBlendMode:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Hard Light Blend Mode, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHardLightBlendMode, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterName": CIHardLightBlendMode, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884d5f10>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIHatchedScreen:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the hatched screen pattern";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.7";
CIAttributeDescription = "The amount of sharpening to apply.";
CIAttributeDisplayName = Sharpness;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88788010>(
CICategoryHalftoneEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Hatched Screen, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The distance between lines in the pattern.";
CIAttributeDisplayName = Width;
CIAttributeMin = 1;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHatchedScreen, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterName": CIHatchedScreen]
>>> CIHeightFieldFromMask:
---
["CIAttributeFilterName": CIHeightFieldFromMask, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHeightFieldFromMask, "CIAttributeFilterAvailable_Mac": 10.4, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The distance from the edge of the mask for the smooth transition is proportional to the input radius. Larger values make the transition smoother and more pronounced. Smaller values make the transition approximate a fillet radius.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 10;
CIAttributeMin = 0;
CIAttributeSliderMax = 300;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The white values of the mask define those pixels that are inside the height field while the black values define those pixels that are outside. The field varies smoothly and continuously inside the mask, reaching the value 0 at the edge of the mask.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Height Field From Mask, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b0b7b0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIHexagonalPixellate:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHexagonalPixellate, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 8;
CIAttributeDescription = "The scale determines the size of the hexagons. Larger values result in larger hexagons.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8b0350>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterDisplayName": Hexagonal Pixelate, "CIAttributeFilterAvailable_Mac": 10.5, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIHexagonalPixellate]
>>> CIHighlightShadowAdjust:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Highlight and Shadow Adjust, "inputShadowAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The amount of adjustment to the shadows of the image.";
CIAttributeDisplayName = "Shadow Amount";
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = "-1";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "-1";
CIAttributeType = CIAttributeTypeScalar;
}, "inputHighlightAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The amount of adjustment to the highlights of the image.";
CIAttributeDisplayName = "Highlight Amount";
CIAttributeIdentity = 1;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "0.3";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8b1440>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHighlightShadowAdjust, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.7, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Shadow Highlight Radius";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIHighlightShadowAdjust]
>>> CIHistogramDisplayFilter:
---
["inputLowLimit": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The fraction of the left portion of the histogram image to make darker";
CIAttributeDisplayName = "Low Limit";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputHighLimit": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The fraction of the right portion of the histogram image to make lighter.";
CIAttributeDisplayName = "High Limit";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIHistogramDisplayFilter, "CIAttributeFilterAvailable_Mac": 10.?, "CIAttributeFilterAvailable_iOS": 8, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8b26f0>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Histogram Display, "inputHeight": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The height of the displayable histogram image.";
CIAttributeDisplayName = Height;
CIAttributeMax = 200;
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHistogramDisplayFilter]
>>> CIHoleDistortion:
---
["CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterDisplayName": Hole Distortion, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884d8130>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHoleDistortion, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 150;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = "0.1";
CIAttributeMin = "0.01";
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = "0.01";
CIAttributeType = CIAttributeTypeDistance;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIHoleDistortion, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIHueAdjust:
---
["CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHueAdjust, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "An angle (in radians) to use to correct the hue of an image.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8878ccd0>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Hue Adjust, "CIAttributeFilterName": CIHueAdjust]
>>> CIHueBlendMode:
---
["inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8b5550>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Hue Blend Mode, "CIAttributeFilterName": CIHueBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHueBlendMode]
>>> CIHueSaturationValueGradient:
---
["CIAttributeFilterName": CIHueSaturationValueGradient, "inputValue": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Value;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIHueSaturationValueGradient, "CIAttributeFilterAvailable_iOS": 10, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8b7e70>(
CICategoryGradient,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.12, "inputColorSpace": {
CIAttributeClass = NSObject;
CIAttributeDefault = "<CGColorSpace 0x7fad88603360> (kCGColorSpaceICCBased; kCGColorSpaceModelRGB; sRGB IEC61966-2.1)";
CIAttributeDescription = "The CGColorSpaceRef that the color wheel should be generated in.";
CIAttributeDisplayName = "Color Space";
}, "inputDither": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Dither;
CIAttributeMin = 0;
CIAttributeSliderMax = 3;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Hue/Saturation/Value Gradient, "inputSoftness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Softness;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIKaleidoscope:
---
["inputCount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The number of reflections in the pattern.";
CIAttributeDisplayName = Count;
CIAttributeMin = 1;
CIAttributeSliderMax = 64;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIKaleidoscope, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIKaleidoscope, "CIAttributeFilterDisplayName": Kaleidoscope, "CIAttributeFilterAvailable_iOS": 9, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of reflection.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8878e940>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIKeystoneCorrectionCombined:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8ba810>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The top right coordinate of the guide.";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.15, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The top left coordinate of the guide.";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Combined Keystone Correction, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIKeystoneCorrectionCombined, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The bottom right coordinate of the guide.";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 13, "inputFocalLength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 28;
CIAttributeDescription = "35mm equivalent focal length of the input image.";
CIAttributeDisplayName = "Focal Length";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIKeystoneCorrectionCombined, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The bottom left coordinate of the guide.";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIKeystoneCorrectionHorizontal:
---
["inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The top left coordinate of the guide.";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.15, "inputFocalLength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 28;
CIAttributeDescription = "35mm equivalent focal length of the input image.";
CIAttributeDisplayName = "Focal Length";
CIAttributeType = CIAttributeTypeScalar;
}, "inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The top right coordinate of the guide.";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The bottom left coordinate of the guide.";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898a3840>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIKeystoneCorrectionHorizontal, "CIAttributeFilterName": CIKeystoneCorrectionHorizontal, "CIAttributeFilterDisplayName": Horizontal Keystone Correction, "CIAttributeFilterAvailable_iOS": 13, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The bottom right coordinate of the guide.";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIKeystoneCorrectionVertical:
---
["CIAttributeFilterName": CIKeystoneCorrectionVertical, "CIAttributeFilterDisplayName": Vertical Keystone Correction, "inputFocalLength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 28;
CIAttributeDescription = "35mm equivalent focal length of the input image.";
CIAttributeDisplayName = "Focal Length";
CIAttributeType = CIAttributeTypeScalar;
}, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The bottom right coordinate of the guide.";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}, "inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The top left coordinate of the guide.";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIKeystoneCorrectionVertical, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887924b0>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The bottom left coordinate of the guide.";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.15, "inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDescription = "The top right coordinate of the guide.";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIKMeans:
---
["inputMeans": {
CIAttributeClass = CIImage;
CIAttributeDescription = "Specifies the color seeds to use for k-means clustering, either passed as an image or an array of colors.";
CIAttributeDisplayName = Means;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.15, "inputCount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 8;
CIAttributeDescription = "Specifies how many k-means color clusters should be used.";
CIAttributeDisplayName = Count;
CIAttributeIdentity = 0;
CIAttributeMax = 128;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeCount;
}, "CIAttributeFilterName": CIKMeans, "inputPasses": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "Specifies how many k-means passes should be performed.";
CIAttributeDisplayName = Passes;
CIAttributeIdentity = 0;
CIAttributeMax = 20;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeCount;
}, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that defines the extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIKMeans, "CIAttributeFilterDisplayName": KMeans, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884dbe30>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputPerceptual": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Specifies whether the k-means color palette should be computed in a perceptual color space.";
CIAttributeDisplayName = Perceptual;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeBoolean;
}]
>>> CILabDeltaE:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8850b390>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 11, "inputImage2": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The second input image for comparison.";
CIAttributeDisplayName = Image2;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The first input image for comparison.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Lab ∆E, "CIAttributeFilterName": CILabDeltaE, "CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILabDeltaE]
>>> CILanczosScaleTransform:
---
["inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The scaling factor to use on the image. Values less than 1.0 scale down the images. Values greater than 1.0 scale up the image.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = "1.5";
CIAttributeSliderMin = "0.05";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Lanczos Scale Transform, "inputAspectRatio": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The additional horizontal scaling factor to use on the image.";
CIAttributeDisplayName = "Aspect Ratio";
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = "0.5";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898a4e40>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CILanczosScaleTransform, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILanczosScaleTransform]
>>> CILenticularHaloGenerator:
---
["inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898a7350 (1 0.9 0.8 1) devicergb>";
CIAttributeDescription = "A color.";
CIAttributeDisplayName = Color;
}, "CIAttributeFilterName": CILenticularHaloGenerator, "inputStriationStrength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The intensity of the halo colors. Larger values are more intense.";
CIAttributeDisplayName = "Striation Strength";
CIAttributeMin = 0;
CIAttributeSliderMax = 3;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputHaloOverlap": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.77";
CIAttributeDisplayName = "Halo Overlap";
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILenticularHaloGenerator, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the halo.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The duration of the effect.";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputHaloWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 87;
CIAttributeDescription = "The width of the halo, from its inner radius to its outer radius.";
CIAttributeDisplayName = "Halo Width";
CIAttributeMin = 0;
CIAttributeSliderMax = 300;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputStriationContrast": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The contrast of the halo colors. Larger values are higher contrast.";
CIAttributeDisplayName = "Striation Contrast";
CIAttributeMin = 0;
CIAttributeSliderMax = 5;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898a71d0>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterDisplayName": Lenticular Halo, "inputHaloRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 70;
CIAttributeDescription = "The radius of the halo.";
CIAttributeDisplayName = "Halo Radius";
CIAttributeMin = 0;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CILightenBlendMode:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILightenBlendMode, "CIAttributeFilterName": CILightenBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Lighten Blend Mode, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8bc700>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
]
>>> CILightTunnel:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "Center of the light tunnel.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILightTunnel, "CIAttributeFilterDisplayName": Light Tunnel Distortion, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeFilterName": CILightTunnel, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "Center radius of the light tunnel.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 500;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884e0b90>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputRotation": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Rotation angle of the light tunnel.";
CIAttributeDisplayName = Rotation;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "1.570796326794897";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeAngle;
}]
>>> CILinearBurnBlendMode:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8bc6c0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Linear Burn Blend Mode, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILinearBurnBlendMode, "CIAttributeFilterName": CILinearBurnBlendMode, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 8]
>>> CILinearDodgeBlendMode:
---
["inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILinearDodgeBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 8, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884e15a0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Linear Dodge Blend Mode, "CIAttributeFilterName": CILinearDodgeBlendMode]
>>> CILinearGradient:
---
["CIAttributeFilterDisplayName": Linear Gradient, "inputPoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[200 200]";
CIAttributeDescription = "The ending position of the gradient -- where the second color begins.";
CIAttributeDisplayName = "Point 1";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILinearGradient, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89837df0>(
CICategoryGradient,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputPoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0]";
CIAttributeDescription = "The starting position of the gradient -- where the first color begins.";
CIAttributeDisplayName = "Point 0";
CIAttributeType = CIAttributeTypePosition;
}, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad89839af0 (1 1 1 1) devicergb>";
CIAttributeDescription = "The first color to use in the gradient.";
CIAttributeDisplayName = "Color 1";
CIAttributeType = CIAttributeTypeColor;
}, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898372c0 (0 0 0 1) devicergb>";
CIAttributeDescription = "The second color to use in the gradient.";
CIAttributeDisplayName = "Color 2";
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterName": CILinearGradient, "CIAttributeFilterAvailable_iOS": 5]
>>> CILinearToSRGBToneCurve:
---
["CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILinearToSRGBToneCurve, "CIAttributeFilterName": CILinearToSRGBToneCurve, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Linear to sRGB Tone Curve, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884d8060>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
]
>>> CILineOverlay:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILineOverlay, "inputEdgeIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The accentuation factor of the Sobel gradient information when tracing the edges of the image. Higher values find more edges, although typically a low value (such as 1.0) is used.";
CIAttributeDisplayName = "Edge Intensity";
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CILineOverlay, "inputThreshold": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.1";
CIAttributeDescription = "This value determines edge visibility. Larger values thin out the edges.";
CIAttributeDisplayName = Threshold;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89915fc0>(
CICategoryBuiltIn,
CICategoryStillImage,
CICategoryVideo,
CICategoryStylize
)
, "inputNRSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.71";
CIAttributeDescription = "The amount of sharpening done when removing noise in the image before tracing the edges of the image. This improves the edge acquisition.";
CIAttributeDisplayName = "NR Sharpness";
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputNRNoiseLevel": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.07000000000000001";
CIAttributeDescription = "The noise level of the image (used with camera data) that gets removed before tracing the edges of the image. Increasing the noise level helps to clean up the traced edges of the image.";
CIAttributeDisplayName = "NR Noise Level";
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = "0.1";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Line Overlay, "inputContrast": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 50;
CIAttributeDescription = "The amount of anti-aliasing to use on the edges produced by this filter. Higher values produce higher contrast edges (they are less anti-aliased).";
CIAttributeDisplayName = Contrast;
CIAttributeIdentity = 1;
CIAttributeMin = "0.25";
CIAttributeSliderMax = 200;
CIAttributeSliderMin = "0.25";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterAvailable_Mac": 10.5]
>>> CILineScreen:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad898aa6b0>(
CICategoryHalftoneEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Line Screen, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILineScreen, "CIAttributeFilterAvailable_Mac": 10.4, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the line screen pattern";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 6;
CIAttributeDescription = "The distance between lines in the pattern.";
CIAttributeDisplayName = Width;
CIAttributeMin = 1;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 2;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 6, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.7";
CIAttributeDescription = "The sharpness of the pattern. The larger the value, the sharper the pattern.";
CIAttributeDisplayName = Sharpness;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CILineScreen]
>>> CILuminosityBlendMode:
---
["inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b0e4c0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CILuminosityBlendMode, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Luminosity Blend Mode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CILuminosityBlendMode]
>>> CIMaskedVariableBlur:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad884e4bf0>(
CICategoryBlur,
CICategoryStillImage,
CICategoryVideo,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMaskedVariableBlur, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIMaskedVariableBlur, "CIAttributeFilterDisplayName": Masked Variable Blur, "inputMask": {
CIAttributeClass = CIImage;
CIAttributeDisplayName = Mask;
}, "CIAttributeFilterAvailable_iOS": 8]
>>> CIMaskToAlpha:
---
["CIAttributeFilterName": CIMaskToAlpha, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterDisplayName": Mask to Alpha, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMaskToAlpha, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88792840>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIMaximumComponent:
---
["CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMaximumComponent, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8c06e0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterName": CIMaximumComponent, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Maximum Component]
>>> CIMaximumCompositing:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad88799d20>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMaximumCompositing, "CIAttributeFilterName": CIMaximumCompositing, "CIAttributeFilterDisplayName": Maximum]
>>> CIMedianFilter:
---
["CIAttributeFilterAvailable_iOS": 9, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMedianFilter, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterName": CIMedianFilter, "CIAttributeFilterDisplayName": Median, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8c1f20>(
CICategoryBlur,
CICategoryStillImage,
CICategoryVideo,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIMeshGenerator:
---
["CIAttributeFilterDisplayName": Mesh Generator, "CIAttributeFilterAvailable_iOS": 12, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.5";
CIAttributeDescription = "The width of the effect.";
CIAttributeDisplayName = Width;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884e5c20>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.14, "CIAttributeFilterName": CIMeshGenerator, "inputMesh": {
CIAttributeClass = NSArray;
CIAttributeDescription = "An array of line segments stored as an array of CIVectors each containing a start point and end point.";
CIAttributeDisplayName = Mesh;
}, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad884e66f0 (1 1 1 1) devicergb>";
CIAttributeDescription = "A color.";
CIAttributeDisplayName = Color;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMeshGenerator]
>>> CIMinimumComponent:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8879b9f0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMinimumComponent, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterName": CIMinimumComponent, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Minimum Component]
>>> CIMinimumCompositing:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884e6f30>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMinimumCompositing, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIMinimumCompositing, "CIAttributeFilterAvailable_iOS": 5, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Minimum]
>>> CIMix:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMix, "CIAttributeFilterName": CIMix, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.14, "inputAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The amount of the effect.";
CIAttributeDisplayName = Amount;
CIAttributeIdentity = 1;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Mix, "CIAttributeFilterAvailable_iOS": 12, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a0fbe0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIModTransition:
---
["CIAttributeFilterAvailable_Mac": 10.4, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887a05e0>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputCompression": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The amount of stretching applied to the mod hole pattern. Holes in the center are not distorted as much as those at the edge of the image.";
CIAttributeDisplayName = Compression;
CIAttributeMin = 1;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 100;
CIAttributeType = CIAttributeTypeDistance;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 2;
CIAttributeDescription = "The angle of the mod hole pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "6.283185307179586";
CIAttributeSliderMin = "-6.283185307179586";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterName": CIModTransition, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIModTransition, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 150;
CIAttributeDescription = "The radius of the undistorted holes in the pattern.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 1;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Mod, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIMorphologyGradient:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMorphologyGradient, "CIAttributeFilterAvailable_Mac": 10.13, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterName": CIMorphologyGradient, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The desired radius of the circular morphological operation to the image.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89b09e50>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Morphology Gradient]
>>> CIMorphologyMaximum:
---
["CIAttributeFilterDisplayName": Morphology Maximum, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8850d780>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMorphologyMaximum, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeFilterName": CIMorphologyMaximum, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The desired radius of the circular morphological operation to the image.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_Mac": 10.13]
>>> CIMorphologyMinimum:
---
["inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The desired radius of the circular morphological operation to the image.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 50;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Morphology Minimum, "CIAttributeFilterAvailable_iOS": 11, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMorphologyMinimum, "CIAttributeFilterName": CIMorphologyMinimum, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.13, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898ac580>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIMorphologyRectangleMaximum:
---
["inputHeight": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The height in pixels of the morphological operation. The value will be rounded to the nearest odd integer.";
CIAttributeDisplayName = Height;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 49;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeInteger;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The width in pixels of the morphological operation. The value will be rounded to the nearest odd integer.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 49;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeInteger;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMorphologyRectangleMaximum, "CIAttributeFilterName": CIMorphologyRectangleMaximum, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterAvailable_Mac": 10.15, "CIAttributeFilterDisplayName": Morphology Rectangle Maximum, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887a5970>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CIMorphologyRectangleMinimum:
---
["CIAttributeFilterName": CIMorphologyRectangleMinimum, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterAvailable_Mac": 10.15, "inputHeight": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The height in pixels of the morphological operation. The value will be rounded to the nearest odd integer.";
CIAttributeDisplayName = Height;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 49;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeInteger;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898ad8d0>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMorphologyRectangleMinimum, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The width in pixels of the morphological operation. The value will be rounded to the nearest odd integer.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 49;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeInteger;
}, "CIAttributeFilterDisplayName": Morphology Rectangle Minimum]
>>> CIMotionBlur:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad89b10950>(
CICategoryBlur,
CICategoryStillImage,
CICategoryVideo,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMotionBlur, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the motion determines which direction the blur smears.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterAvailable_iOS": 8.3, "CIAttributeFilterDisplayName": Motion Blur, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 20;
CIAttributeDescription = "The radius determines how many pixels are used to create the blur. The larger the radius, the blurrier the result.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterName": CIMotionBlur]
>>> CIMultiplyBlendMode:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad884e8e10>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterName": CIMultiplyBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Multiply Blend Mode, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMultiplyBlendMode]
>>> CIMultiplyCompositing:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIMultiplyCompositing, "CIAttributeFilterName": CIMultiplyCompositing, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Multiply, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884e9e40>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
]
>>> CINinePartStretched:
---
["CIAttributeFilterName": CINinePartStretched, "inputGrowAmount": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[100 100]";
CIAttributeDisplayName = "Grow Amount";
CIAttributeType = CIAttributeTypeOffset;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898b07c0>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Nine Part Stretched, "CIAttributeFilterAvailable_iOS": 10, "inputBreakpoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[50 50]";
CIAttributeDescription = "Lower left corner of image to retain before stretching begins.";
CIAttributeDisplayName = Breakpoint0;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CINinePartStretched, "CIAttributeFilterAvailable_Mac": 10.12, "inputBreakpoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "Upper right corner of image to retain after stretching ends.";
CIAttributeDisplayName = Breakpoint1;
CIAttributeType = CIAttributeTypePosition;
}]
>>> CINinePartTiled:
---
["inputFlipYTiles": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "Indicates that Y-Axis flip should occur.";
CIAttributeDisplayName = "Flip Y Tiles";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeBoolean;
}, "CIAttributeFilterDisplayName": Nine Part Tiled, "CIAttributeFilterAvailable_Mac": 10.12, "inputBreakpoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[50 50]";
CIAttributeDescription = "Lower left corner of image to retain before tiling begins.";
CIAttributeDisplayName = Breakpoint0;
CIAttributeType = CIAttributeTypePosition;
}, "inputGrowAmount": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[100 100]";
CIAttributeDisplayName = "Grow Amount";
CIAttributeType = CIAttributeTypeOffset;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CINinePartTiled, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8c5130>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 10, "CIAttributeFilterName": CINinePartTiled, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBreakpoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "Upper right corner of image to retain after tiling ends.";
CIAttributeDisplayName = Breakpoint1;
CIAttributeType = CIAttributeTypePosition;
}]
>>> CINoiseReduction:
---
["inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.4";
CIAttributeDescription = "The sharpness of the final image. The larger the value, the sharper the result.";
CIAttributeDisplayName = Sharpness;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8c50a0>(
CICategoryBlur,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CINoiseReduction, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputNoiseLevel": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.02";
CIAttributeDescription = "The amount of noise reduction. The larger the value, the more noise reduction.";
CIAttributeDisplayName = "Noise Level";
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = "0.1";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CINoiseReduction, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterDisplayName": Noise Reduction, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIOpTile:
---
["CIAttributeFilterAvailable_iOS": 9, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "2.8";
CIAttributeDescription = "The scale determines the number of tiles in the effect.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = "0.1";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIOpTile, "CIAttributeFilterName": CIOpTile, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 65;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 65;
CIAttributeMin = 0;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887a8810>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of a tile.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterDisplayName": Op Tile]
>>> CIOverlayBlendMode:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIOverlayBlendMode, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887aa950>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Overlay Blend Mode, "CIAttributeFilterName": CIOverlayBlendMode, "CIAttributeFilterAvailable_iOS": 5]
>>> CIPageCurlTransition:
---
["inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The radius of the curl.";
CIAttributeDisplayName = Radius;
CIAttributeMin = "0.01";
CIAttributeSliderMax = 400;
CIAttributeSliderMin = "0.01";
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8c94e0>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the curling page.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 300 300]";
CIAttributeDescription = "The extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterName": CIPageCurlTransition, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "inputShadingImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "An image that looks like a shaded sphere enclosed in a square image.";
CIAttributeDisplayName = "Shading Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputBacksideImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image that appears on the back of the source image, as the page curls to reveal the target image.";
CIAttributeDisplayName = "Backside Image";
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPageCurlTransition, "CIAttributeFilterDisplayName": Page Curl]
>>> CIPageCurlWithShadowTransition:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The radius of the curl.";
CIAttributeDisplayName = Radius;
CIAttributeMin = "0.01";
CIAttributeSliderMax = 400;
CIAttributeSliderMin = "0.01";
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Page Curl With Shadow, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "inputShadowSize": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The maximum size in pixels of the shadow.";
CIAttributeDisplayName = "Shadow Size";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterAvailable_Mac": 10.9, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIPageCurlWithShadowTransition, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the curling page.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputBacksideImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image that appears on the back of the source image, as the page curls to reveal the target image.";
CIAttributeDisplayName = "Backside Image";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPageCurlWithShadowTransition, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89a13a50>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputShadowExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0]";
CIAttributeDescription = "The rectagular portion of input image that will cast a shadow.";
CIAttributeDisplayName = "Shadow Extent";
CIAttributeType = CIAttributeTypeRectangle;
}, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 0 0]";
CIAttributeDescription = "The extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "inputShadowAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.7";
CIAttributeDescription = "The strength of the shadow.";
CIAttributeDisplayName = "Shadow Amount";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIPaletteCentroid:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPaletteCentroid, "CIAttributeFilterName": CIPaletteCentroid, "CIAttributeFilterDisplayName": Palette Centroid, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89844cc0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterAvailable_Mac": 10.15, "inputPaletteImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The input color palette, obtained using \U201cCIKMeans\U201c filter.";
CIAttributeDisplayName = "Palette Image";
}, "inputPerceptual": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Specifies whether the color palette should be applied in a perceptual color space.";
CIAttributeDisplayName = Perceptual;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeBoolean;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIPalettize:
---
["inputPerceptual": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Specifies whether the color palette should be applied in a perceptual color space.";
CIAttributeDisplayName = Perceptual;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeType = CIAttributeTypeBoolean;
}, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterName": CIPalettize, "CIAttributeFilterDisplayName": Palettize, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPalettize, "CIAttributeFilterAvailable_Mac": 10.15, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898b17d0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputPaletteImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The input color palette, obtained using \U201cCIKMeans\U201c filter.";
CIAttributeDisplayName = "Palette Image";
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIParallelogramTile:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIParallelogramTile, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputAcuteAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.570796326794897";
CIAttributeDescription = "The primary angle for the repeating parallelogram tile. Small values create thin diamond tiles, and higher values create fatter parallelogram tiles.";
CIAttributeDisplayName = "Acute Angle";
CIAttributeIdentity = "1.570796326794897";
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterName": CIParallelogramTile, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Parallelogram Tile, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887aba80>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIPDF417BarcodeGenerator:
---
["CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8cbe20>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.11, "inputCorrectionLevel": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The correction level ratio of the generated barcode";
CIAttributeDisplayName = "Correction Level";
CIAttributeMax = 8;
CIAttributeMin = 0;
CIAttributeSliderMax = 8;
CIAttributeSliderMin = 0;
}, "inputMinWidth": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The minimum width of the generated barcode in pixels.";
CIAttributeDisplayName = "Min Width";
CIAttributeMax = 583;
CIAttributeMin = 56;
CIAttributeSliderMax = 583;
CIAttributeSliderMin = 56;
}, "CIAttributeFilterName": CIPDF417BarcodeGenerator, "inputMaxWidth": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The maximum width of the generated barcode in pixels.";
CIAttributeDisplayName = "Max Width";
CIAttributeMax = 583;
CIAttributeMin = 56;
CIAttributeSliderMax = 583;
CIAttributeSliderMin = 56;
}, "inputCompactStyle": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "Force a compact style Aztec code to @YES or @NO. Set to nil for automatic.";
CIAttributeDisplayName = "Compact Style";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
}, "inputAlwaysSpecifyCompaction": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "Force compaction style to @YES or @NO. Set to nil for automatic.";
CIAttributeDisplayName = "Always Specify Compaction";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPDF417BarcodeGenerator, "inputPreferredAspectRatio": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The preferred aspect ratio of the generated barcode";
CIAttributeDisplayName = "Preferred Aspect Ratio";
CIAttributeMax = 9223372036854775807;
CIAttributeMin = 0;
CIAttributeSliderMax = 9223372036854775807;
CIAttributeSliderMin = 0;
}, "inputRows": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The number of rows in the generated barcode";
CIAttributeDisplayName = Rows;
CIAttributeMax = 90;
CIAttributeMin = 3;
CIAttributeSliderMax = 90;
CIAttributeSliderMin = 3;
}, "inputDataColumns": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The number of data columns in the generated barcode";
CIAttributeDisplayName = "Data Columns";
CIAttributeMax = 30;
CIAttributeMin = 1;
CIAttributeSliderMax = 30;
CIAttributeSliderMin = 1;
}, "CIAttributeFilterDisplayName": PDF417 Barcode Generator, "inputCompactionMode": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The compaction mode of the generated barcode.";
CIAttributeDisplayName = "Compaction Mode";
CIAttributeMax = 3;
CIAttributeMin = 0;
CIAttributeSliderMax = 3;
CIAttributeSliderMin = 0;
}, "inputMaxHeight": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The maximum height of the generated barcode in pixels.";
CIAttributeDisplayName = "Max Height";
CIAttributeMax = 283;
CIAttributeMin = 13;
CIAttributeSliderMax = 283;
CIAttributeSliderMin = 13;
}, "inputMinHeight": {
CIAttributeClass = NSNumber;
CIAttributeDescription = "The minimum height of the generated barcode in pixels.";
CIAttributeDisplayName = "Min Height";
CIAttributeMax = 283;
CIAttributeMin = 13;
CIAttributeSliderMax = 283;
CIAttributeSliderMin = 13;
}, "inputMessage": {
CIAttributeClass = NSData;
CIAttributeDescription = "The message to encode in the PDF417 Barcode";
CIAttributeDisplayName = Message;
}]
>>> CIPerspectiveCorrection:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.10, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[155 153]";
CIAttributeDescription = "The bottom left coordinate to be perspective corrected.";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}, "inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[118 484]";
CIAttributeDescription = "The top left coordinate to be perspective corrected.";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}, "inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[646 507]";
CIAttributeDescription = "The top right coordinate to be perspective corrected.";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIPerspectiveCorrection, "CIAttributeFilterAvailable_iOS": 8, "inputCrop": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = Crop;
CIAttributeType = CIAttributeTypeBoolean;
}, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[548 140]";
CIAttributeDescription = "The bottom right coordinate to be perspective corrected.";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Perspective Correction, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPerspectiveCorrection, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887adba0>(
CICategoryGeometryAdjustment,
CICategoryStillImage,
CICategoryVideo,
CICategoryBuiltIn
)
]
>>> CIPerspectiveRotate:
---
["CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterName": CIPerspectiveRotate, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b0230>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Perspective Rotate, "inputYaw": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Yaw angle in radians.";
CIAttributeDisplayName = Yaw;
CIAttributeIdentity = 0;
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterAvailable_Mac": 10.15, "inputPitch": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Pitch angle in radians.";
CIAttributeDisplayName = Pitch;
CIAttributeIdentity = 0;
CIAttributeType = CIAttributeTypeAngle;
}, "inputRoll": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "Roll angle in radians.";
CIAttributeDisplayName = Roll;
CIAttributeIdentity = 0;
CIAttributeType = CIAttributeTypeAngle;
}, "inputFocalLength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 28;
CIAttributeDescription = "35mm equivalent focal length of the input image.";
CIAttributeDisplayName = "Focal Length";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPerspectiveRotate, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIPerspectiveTile:
---
["inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[646 507]";
CIAttributeDescription = "The top right coordinate of a tile.";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIPerspectiveTile, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898b49b0>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[548 140]";
CIAttributeDescription = "The bottom right coordinate of a tile.";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}, "inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[118 484]";
CIAttributeDescription = "The top left coordinate of a tile.";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPerspectiveTile, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Perspective Tile, "CIAttributeFilterAvailable_iOS": 6, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[155 153]";
CIAttributeDescription = "The bottom left coordinate of a tile.";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIPerspectiveTransform:
---
["CIAttributeFilterDisplayName": Perspective Transform, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 6, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[155 153]";
CIAttributeDescription = "The bottom left coordinate to map the image to.";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIPerspectiveTransform, "inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[646 507]";
CIAttributeDescription = "The top right coordinate to map the image to.";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[548 140]";
CIAttributeDescription = "The bottom right coordinate to map the image to.";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPerspectiveTransform, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b1410>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[118 484]";
CIAttributeDescription = "The top left coordinate to map the image to.";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIPerspectiveTransformWithExtent:
---
["inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 300 300]";
CIAttributeDescription = "A rectangle that defines the extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeFilterDisplayName": Perspective Transform with Extent, "inputBottomLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[155 153]";
CIAttributeDisplayName = "Bottom Left";
CIAttributeType = CIAttributeTypePosition;
}, "inputTopLeft": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[118 484]";
CIAttributeDisplayName = "Top Left";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputTopRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[646 507]";
CIAttributeDisplayName = "Top Right";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8d3540>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPerspectiveTransformWithExtent, "CIAttributeFilterName": CIPerspectiveTransformWithExtent, "CIAttributeFilterAvailable_iOS": 6, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBottomRight": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[548 140]";
CIAttributeDisplayName = "Bottom Right";
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIPhotoEffectChrome:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectChrome, "CIAttributeFilterName": CIPhotoEffectChrome, "CIAttributeFilterDisplayName": Photo Effect Chrome, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884ef200>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
]
>>> CIPhotoEffectFade:
---
["CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterName": CIPhotoEffectFade, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectFade, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884f0b40>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Photo Effect Fade]
>>> CIPhotoEffectInstant:
---
["CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884f1e60>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectInstant, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterName": CIPhotoEffectInstant, "CIAttributeFilterDisplayName": Photo Effect Instant]
>>> CIPhotoEffectMono:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectMono, "CIAttributeFilterDisplayName": Photo Effect Mono, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b37b0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterName": CIPhotoEffectMono]
>>> CIPhotoEffectNoir:
---
["CIAttributeFilterAvailable_Mac": 10.9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectNoir, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8d5940>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
, "CIAttributeFilterDisplayName": Photo Effect Noir, "CIAttributeFilterName": CIPhotoEffectNoir, "CIAttributeFilterAvailable_iOS": 7]
>>> CIPhotoEffectProcess:
---
["CIAttributeFilterDisplayName": Photo Effect Process, "CIAttributeFilterAvailable_iOS": 7, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIPhotoEffectProcess, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8d7110>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectProcess]
>>> CIPhotoEffectTonal:
---
["CIAttributeFilterDisplayName": Photo Effect Tonal, "CIAttributeFilterName": CIPhotoEffectTonal, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectTonal, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884f3cb0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
]
>>> CIPhotoEffectTransfer:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPhotoEffectTransfer, "CIAttributeFilterName": CIPhotoEffectTransfer, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884f4f40>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeFilterDisplayName": Photo Effect Transfer, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.9]
>>> CIPinchDistortion:
---
["CIAttributeFilterDisplayName": Pinch Distortion, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterName": CIPinchDistortion, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8d93d0>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPinchDistortion, "CIAttributeFilterAvailable_Mac": 10.4, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The amount of pinching. A value of 0.0 has no effect. A value of 1.0 is the maximum pinch.";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIPinLightBlendMode:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad898b6d10>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIPinLightBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Pin Light Blend Mode, "CIAttributeFilterAvailable_iOS": 8, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPinLightBlendMode]
>>> CIPixellate:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 8;
CIAttributeDescription = "The scale determines the size of the squares. Larger values result in larger squares.";
CIAttributeDisplayName = Scale;
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterName": CIPixellate, "CIAttributeFilterDisplayName": Pixelate, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPixellate, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b5060>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIPointillize:
---
["CIAttributeFilterName": CIPointillize, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIPointillize, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b6190>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 20;
CIAttributeDescription = "The radius of the circles in the resulting pattern.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 1;
CIAttributeMin = 1;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Pointillize, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}]
>>> CIQRCodeGenerator:
---
["CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898b8860>(
CICategoryGenerator,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 7, "inputCorrectionLevel": {
CIAttributeClass = NSString;
CIAttributeDefault = M;
CIAttributeDescription = "QR Code correction level L, M, Q, or H.";
CIAttributeDisplayName = "Correction Level";
}, "inputMessage": {
CIAttributeClass = NSData;
CIAttributeDescription = "The message to encode in the QR Code";
CIAttributeDisplayName = Message;
}, "CIAttributeFilterName": CIQRCodeGenerator, "CIAttributeFilterDisplayName": QR Code Generator, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIQRCodeGenerator]
>>> CIRadialGradient:
---
["inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 5, "inputRadius1": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The radius of the ending circle to use in the gradient.";
CIAttributeDisplayName = "Radius 2";
CIAttributeMin = 0;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898bb4a0>(
CICategoryGradient,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputRadius0": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 5;
CIAttributeDescription = "The radius of the starting circle to use in the gradient.";
CIAttributeDisplayName = "Radius 1";
CIAttributeMin = 0;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898bc3f0 (1 1 1 1) devicergb>";
CIAttributeDescription = "The first color to use in the gradient.";
CIAttributeDisplayName = "Color 1";
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIRadialGradient, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898bc4c0 (0 0 0 1) devicergb>";
CIAttributeDescription = "The second color to use in the gradient.";
CIAttributeDisplayName = "Color 2";
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterName": CIRadialGradient, "CIAttributeFilterDisplayName": Radial Gradient]
>>> CIRandomGenerator:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad884f7560>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Random Generator, "CIAttributeFilterName": CIRandomGenerator, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIRandomGenerator, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterAvailable_Mac": 10.4]
>>> CIRippleTransition:
---
["CIAttributeFilterAvailable_iOS": 9, "inputShadingImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "An image that looks like a shaded sphere enclosed in a square image.";
CIAttributeDisplayName = "Shading Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CIRippleTransition, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 50;
CIAttributeDescription = "A value that determines whether the ripple starts as a bulge (higher value) or a dimple (lower value).";
CIAttributeDisplayName = Scale;
CIAttributeIdentity = 0;
CIAttributeMin = "-50";
CIAttributeSliderMax = 50;
CIAttributeSliderMin = "-50";
CIAttributeType = CIAttributeTypeScalar;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 300 300]";
CIAttributeDescription = "A rectangle that defines the extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIRippleTransition, "CIAttributeFilterDisplayName": Ripple, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89865190>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of the ripple.";
CIAttributeDisplayName = Width;
CIAttributeMin = 1;
CIAttributeSliderMax = 300;
CIAttributeSliderMin = 10;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CIRoundedRectangleGenerator:
---
["CIAttributeFilterAvailable_Mac": 10.15, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b7f80>(
CICategoryGenerator,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 100 100]";
CIAttributeDescription = "A rectangle that defines the extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad887b0980 (1 1 1 1) devicergb>";
CIAttributeDescription = "A color.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterAvailable_iOS": 13, "CIAttributeFilterName": CIRoundedRectangleGenerator, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIRoundedRectangleGenerator, "CIAttributeFilterDisplayName": Rounded Rectangle Generator]
>>> CIRowAverage:
---
["CIAttributeFilterName": CIRowAverage, "CIAttributeFilterDisplayName": Row Average, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887b9a80>(
CICategoryReduction,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to process.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 9, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 640 80]";
CIAttributeDescription = "A rectangle that specifies the subregion of the image that you want to process.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIRowAverage, "CIAttributeFilterAvailable_Mac": 10.5]
>>> CISaliencyMapFilter:
---
["CIAttributeFilterAvailable_iOS": 12, "CIAttributeFilterName": CISaliencyMapFilter, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISaliencyMapFilter, "CIAttributeFilterAvailable_Mac": 10.14, "CIAttributeFilterDisplayName": Saliency Map Filter, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887ba6b0>(
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryStylize
)
]
>>> CISampleNearest:
---
["CIAttributeFilterAvailable_iOS": 12, "CIAttributeFilterName": CISampleNearest, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884ee790>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISampleNearest, "CIAttributeFilterAvailable_Mac": 10.14, "CIAttributeFilterDisplayName": Sample Nearest, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CISaturationBlendMode:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CISaturationBlendMode, "CIAttributeFilterDisplayName": Saturation Blend Mode, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISaturationBlendMode, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884f8ed0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 5]
>>> CIScreenBlendMode:
---
["CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8d3b00>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIScreenBlendMode, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Screen Blend Mode, "CIAttributeFilterName": CIScreenBlendMode, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CISepiaTone:
---
["CIAttributeFilterAvailable_iOS": 5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Sepia Tone, "CIAttributeFilterName": CISepiaTone, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISepiaTone, "CIAttributeFilterAvailable_Mac": 10.4, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The intensity of the sepia effect. A value of 1.0 creates a monochrome sepia image. A value of 0.0 has no effect on the image.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887bc210>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn,
CICategoryXMPSerializable
)
]
>>> CIShadedMaterial:
---
["inputShadingImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as the height field. The resulting image has greater heights with lighter shades, and lesser heights (lower areas) with darker shades.";
CIAttributeDisplayName = "Shading Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887be6b0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIShadedMaterial, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Shaded Material, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIShadedMaterial, "inputScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 10;
CIAttributeDescription = "The scale of the effect. The higher the value, the more dramatic the effect.";
CIAttributeDisplayName = Scale;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = "0.5";
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CISharpenLuminance:
---
["inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.4";
CIAttributeDescription = "The amount of sharpening to apply. Larger values are sharper.";
CIAttributeDisplayName = Sharpness;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISharpenLuminance, "CIAttributeFilterName": CISharpenLuminance, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Sharpen Luminance, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.69";
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 20;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884fb480>(
CICategorySharpen,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CISixfoldReflectedTile:
---
["CIAttributeFilterAvailable_iOS": 6, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CISixfoldReflectedTile, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887c09b0>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Sixfold Reflected Tile, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISixfoldReflectedTile, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CISixfoldRotatedTile:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad898bf330>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterName": CISixfoldRotatedTile, "CIAttributeFilterDisplayName": Sixfold Rotated Tile, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISixfoldRotatedTile, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CISmoothLinearGradient:
---
["inputPoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[200 200]";
CIAttributeDescription = "The ending position of the gradient -- where the second color begins.";
CIAttributeDisplayName = "Point 1";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_Mac": 10.10, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c8de9b0 (0 0 0 1) devicergb>";
CIAttributeDescription = "The second color to use in the gradient.";
CIAttributeDisplayName = "Color 2";
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISmoothLinearGradient, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c8de4f0 (1 1 1 1) devicergb>";
CIAttributeDescription = "The first color to use in the gradient.";
CIAttributeDisplayName = "Color 1";
CIAttributeType = CIAttributeTypeColor;
}, "inputPoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0]";
CIAttributeDescription = "The starting position of the gradient -- where the first color begins.";
CIAttributeDisplayName = "Point 0";
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterName": CISmoothLinearGradient, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898c0d90>(
CICategoryGradient,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Smooth Linear Gradient]
>>> CISoftLightBlendMode:
---
["CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Soft Light Blend Mode, "CIAttributeFilterName": CISoftLightBlendMode, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887c2a30>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISoftLightBlendMode, "CIAttributeFilterAvailable_iOS": 5, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}]
>>> CISourceAtopCompositing:
---
["CIAttributeFilterDisplayName": Source Atop, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterName": CISourceAtopCompositing, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISourceAtopCompositing, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887c2f00>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}]
>>> CISourceInCompositing:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterName": CISourceInCompositing, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Source In, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8e0c30>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISourceInCompositing]
>>> CISourceOutCompositing:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISourceOutCompositing, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CISourceOutCompositing, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Source Out, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c900de0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 5]
>>> CISourceOverCompositing:
---
["inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CISourceOverCompositing, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISourceOverCompositing, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c902ac0>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryHighDynamicRange,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Source Over]
>>> CISpotColor:
---
["inputReplacementColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898c4750 (0.4392 0.1922 0.1961 1) devicergb>";
CIAttributeDescription = "A replacement color for the first color range.";
CIAttributeDisplayName = "Replacement Color 1";
}, "inputReplacementColor2": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898c4a50 (0.9137 0.5608 0.5059 1) devicergb>";
CIAttributeDescription = "A replacement color for the second color range.";
CIAttributeDisplayName = "Replacement Color 2";
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898c4030>(
CICategoryBuiltIn,
CICategoryStillImage,
CICategoryVideo,
CICategoryStylize
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 9, "inputCenterColor2": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898c4980 (0.5255 0.3059 0.3451 1) devicergb>";
CIAttributeDescription = "The center value of the second color range to replace.";
CIAttributeDisplayName = "Center Color 2";
}, "inputContrast1": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.98";
CIAttributeDescription = "The contrast of the first replacement color.";
CIAttributeDisplayName = "Contrast 1";
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputContrast2": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.98";
CIAttributeDescription = "The contrast of the second replacement color.";
CIAttributeDisplayName = "Contrast 2";
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputCloseness2": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.15";
CIAttributeDescription = "A value that indicates how close the second color must match before it is replaced.";
CIAttributeDisplayName = "Closeness 2";
CIAttributeMin = 0;
CIAttributeSliderMax = "0.5";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.5, "inputCloseness1": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.22";
CIAttributeDescription = "A value that indicates how close the first color must match before it is replaced.";
CIAttributeDisplayName = "Closeness 1";
CIAttributeMin = 0;
CIAttributeSliderMax = "0.5";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CISpotColor, "inputCenterColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898c27d0 (0.0784 0.0627 0.0706 1) devicergb>";
CIAttributeDescription = "The center value of the first color range to replace.";
CIAttributeDisplayName = "Center Color 1";
}, "inputReplacementColor3": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898c4d50 (0.9098 0.7529 0.6078 1) devicergb>";
CIAttributeDescription = "A replacement color for the third color range.";
CIAttributeDisplayName = "Replacement Color 3";
}, "CIAttributeFilterDisplayName": Spot Color, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISpotColor, "inputCenterColor3": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898c4c80 (0.9216 0.4549 0.3333 1) devicergb>";
CIAttributeDescription = "The center value of the third color range to replace.";
CIAttributeDisplayName = "Center Color 3";
}, "inputContrast3": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.99";
CIAttributeDescription = "The contrast of the third replacement color.";
CIAttributeDisplayName = "Contrast 3";
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputCloseness3": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "A value that indicates how close the third color must match before it is replaced.";
CIAttributeDisplayName = "Closeness 3";
CIAttributeMin = 0;
CIAttributeSliderMax = "0.5";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CISpotLight:
---
["inputConcentration": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.1";
CIAttributeDescription = "The spotlight size. The smaller the value, the more tightly focused the light beam.";
CIAttributeDisplayName = Concentration;
CIAttributeIdentity = 20;
CIAttributeMin = "0.001";
CIAttributeSliderMax = "1.5";
CIAttributeSliderMin = "0.001";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISpotLight, "CIAttributeFilterName": CISpotLight, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c8e31e0 (1 1 1 1) devicergb>";
CIAttributeDescription = "The color of the spotlight.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeOpaqueColor;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8e2fa0>(
CICategoryStylize,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 9, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputLightPosition": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[400 600 150]";
CIAttributeDescription = "The x and y position of the spotlight.";
CIAttributeDisplayName = "Light Position";
CIAttributeType = CIAttributeTypePosition3;
}, "CIAttributeFilterDisplayName": Spot Light, "inputLightPointsAt": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[200 200 0]";
CIAttributeDescription = "The x and y position that the spotlight points at.";
CIAttributeDisplayName = "Light Points At";
CIAttributeType = CIAttributeTypePosition3;
}, "inputBrightness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 3;
CIAttributeDescription = "The brightness of the spotlight.";
CIAttributeDisplayName = Brightness;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CISRGBToneCurveToLinear:
---
["CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeFilterAvailable_iOS": 7, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISRGBToneCurveToLinear, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CISRGBToneCurveToLinear, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c904400>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": sRGB Tone Curve to Linear]
>>> CIStarShineGenerator:
---
["CIAttributeFilterName": CIStarShineGenerator, "CIAttributeFilterAvailable_iOS": 6, "inputCrossWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "2.5";
CIAttributeDescription = "The width of the cross pattern.";
CIAttributeDisplayName = "Cross Width";
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = "0.5";
CIAttributeType = CIAttributeTypeDistance;
}, "inputCrossOpacity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "-2";
CIAttributeDescription = "The opacity of the cross pattern.";
CIAttributeDisplayName = "Cross Opacity";
CIAttributeIdentity = "-2";
CIAttributeMin = "-8";
CIAttributeSliderMax = 0;
CIAttributeSliderMin = "-8";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIStarShineGenerator, "inputCrossScale": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 15;
CIAttributeDescription = "The size of the cross pattern.";
CIAttributeDisplayName = "Cross Scale";
CIAttributeIdentity = 15;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the star.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Star Shine, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 50;
CIAttributeDescription = "The radius of the star.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 300;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c8e6cc0 (1 0.8 0.6 1) devicergb>";
CIAttributeDescription = "The color to use for the outer shell of the circular star.";
CIAttributeDisplayName = Color;
}, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8e6c90>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputEpsilon": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "-2";
CIAttributeDescription = "The length of the cross spikes.";
CIAttributeDisplayName = Epsilon;
CIAttributeIdentity = "-2";
CIAttributeMin = "-8";
CIAttributeSliderMax = 0;
CIAttributeSliderMin = "-8";
CIAttributeType = CIAttributeTypeScalar;
}, "inputCrossAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.6";
CIAttributeDescription = "The angle of the cross pattern.";
CIAttributeDisplayName = "Cross Angle";
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}]
>>> CIStraightenFilter:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIStraightenFilter, "CIAttributeFilterName": CIStraightenFilter, "CIAttributeFilterDisplayName": Straighten, "CIAttributeFilterAvailable_Mac": 10.7, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8e85f0>(
CICategoryGeometryAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "An angle in radians.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterAvailable_iOS": 5]
>>> CIStretchCrop:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad8c906f70>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Stretch Crop, "CIAttributeFilterAvailable_iOS": 9, "inputCropAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.25";
CIAttributeDescription = "Determines if and how much cropping should be used to achieve the target size. If value is 0 then only stretching is used. If 1 then only cropping is used.";
CIAttributeDisplayName = "Crop Amount";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIStretchCrop, "inputCenterStretchAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.25";
CIAttributeDescription = "Determine how much the center of the image is stretched if stretching is used. If value is 0 then the center of the image maintains the original aspect ratio. If 1 then the image is stretched uniformly.";
CIAttributeDisplayName = "Center Stretch Amount";
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputSize": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[1280 720]";
CIAttributeDescription = "The size in pixels of the output image.";
CIAttributeDisplayName = Size;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterName": CIStretchCrop, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.6]
>>> CIStripesGenerator:
---
["CIAttributeFilterDisplayName": Stripes, "inputSharpness": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The sharpness of the stripe pattern. The smaller the value, the more blurry the pattern. Values range from 0.0 to 1.0.";
CIAttributeDisplayName = Sharpness;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIStripesGenerator, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 80;
CIAttributeDescription = "The width of a stripe.";
CIAttributeDisplayName = Width;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898c8c60>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_Mac": 10.4, "inputColor1": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898ca610 (0 0 0 1) devicergb>";
CIAttributeDescription = "A color to use for the even stripes.";
CIAttributeDisplayName = "Color 2";
}, "CIAttributeFilterAvailable_iOS": 5, "inputColor0": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898ca580 (1 1 1 1) devicergb>";
CIAttributeDescription = "A color to use for the odd stripes.";
CIAttributeDisplayName = "Color 1";
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIStripesGenerator, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the stripe pattern.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}]
>>> CISubtractBlendMode:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISubtractBlendMode, "CIAttributeFilterAvailable_iOS": 8, "inputBackgroundImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as a background image.";
CIAttributeDisplayName = "Background Image";
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Subtract Blend Mode, "CIAttributeFilterAvailable_Mac": 10.10, "CIAttributeFilterName": CISubtractBlendMode, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8e9b50>(
CICategoryCompositeOperation,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
]
>>> CISunbeamsGenerator:
---
["inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The duration of the effect.";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the sunbeam pattern";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterDisplayName": Sunbeams, "inputStriationStrength": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The intensity of the sunbeams. Higher values result in more intensity.";
CIAttributeDisplayName = "Striation Strength";
CIAttributeIdentity = "0.5";
CIAttributeMin = 0;
CIAttributeSliderMax = 3;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISunbeamsGenerator, "inputStriationContrast": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.375";
CIAttributeDescription = "The contrast of the sunbeams. Higher values result in more contrast.";
CIAttributeDisplayName = "Striation Contrast";
CIAttributeIdentity = "1.375";
CIAttributeMin = 0;
CIAttributeSliderMax = 5;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CISunbeamsGenerator, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad8c8ebf40 (1 0.5 0 1) devicergb>";
CIAttributeDescription = "The color of the sun.";
CIAttributeDisplayName = Color;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8ebf10>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputSunRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 40;
CIAttributeDescription = "The radius of the sun.";
CIAttributeDisplayName = "Sun Radius";
CIAttributeIdentity = 40;
CIAttributeMin = 0;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputMaxStriationRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "2.58";
CIAttributeDescription = "The radius of the sunbeams.";
CIAttributeDisplayName = "Maximum Striation Radius";
CIAttributeIdentity = "2.58";
CIAttributeMin = 0;
CIAttributeSliderMax = 10;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CISwipeTransition:
---
["inputOpacity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The opacity of the swipe.";
CIAttributeDisplayName = Opacity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CISwipeTransition, "CIAttributeFilterAvailable_Mac": 10.4, "inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad898cbe80 (1 1 1 1) devicergb>";
CIAttributeDescription = "The color of the swipe.";
CIAttributeDisplayName = Color;
CIAttributeType = CIAttributeTypeOpaqueColor;
}, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle of the swipe.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputTargetImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The target image for a transition.";
CIAttributeDisplayName = "Target Image";
CIAttributeType = CIAttributeTypeImage;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 6, "inputTime": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The parametric time of the transition. This value drives the transition from start (at time 0) to end (at time 1).";
CIAttributeDisplayName = Time;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeTime;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad89850fa0>(
CICategoryTransition,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Swipe, "CIAttributeFilterName": CISwipeTransition, "inputExtent": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0 300 300]";
CIAttributeDescription = "The extent of the effect.";
CIAttributeDisplayName = Extent;
CIAttributeType = CIAttributeTypeRectangle;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The width of the swipe";
CIAttributeDisplayName = Width;
CIAttributeMin = "0.1";
CIAttributeSliderMax = 800;
CIAttributeSliderMin = "0.1";
CIAttributeType = CIAttributeTypeDistance;
}]
>>> CITemperatureAndTint:
---
["inputNeutral": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[6500 0]";
CIAttributeDisplayName = Neutral;
CIAttributeIdentity = "[6500 0]";
CIAttributeType = CIAttributeTypeOffset;
}, "CIAttributeFilterAvailable_Mac": 10.7, "inputTargetNeutral": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[6500 0]";
CIAttributeDisplayName = "Target Neutral";
CIAttributeIdentity = "[6500 0]";
CIAttributeType = CIAttributeTypeOffset;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898ce350>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CITemperatureAndTint, "CIAttributeFilterDisplayName": Temperature and Tint, "CIAttributeFilterAvailable_iOS": 5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITemperatureAndTint]
>>> CITextImageGenerator:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad887cbd60>(
CICategoryGenerator,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputFontName": {
CIAttributeClass = NSString;
CIAttributeDefault = HelveticaNeue;
CIAttributeDisplayName = "Font Name";
}, "CIAttributeFilterAvailable_Mac": 10.13, "inputFontSize": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 12;
CIAttributeDisplayName = "Font Size";
CIAttributeMin = 0;
CIAttributeSliderMax = 128;
CIAttributeSliderMin = 9;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Text Image Generator, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITextImageGenerator, "inputScaleFactor": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDisplayName = "Scale Factor";
CIAttributeMin = 0;
CIAttributeSliderMax = 4;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CITextImageGenerator, "CIAttributeFilterAvailable_iOS": 11, "inputText": {
CIAttributeClass = NSString;
CIAttributeDisplayName = Text;
}]
>>> CIThermal:
---
["CIAttributeFilterName": CIThermal, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898ce550>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterDisplayName": Thermal, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIThermal, "CIAttributeFilterAvailable_iOS": 10, "CIAttributeFilterAvailable_Mac": 10.11]
>>> CIToneCurve:
---
["CIAttributeFilterDisplayName": Tone Curve, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIToneCurve, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterName": CIToneCurve, "inputPoint4": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[1 1]";
CIAttributeDisplayName = "Point 4";
CIAttributeIdentity = "[1 1]";
CIAttributeType = CIAttributeTypeOffset;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8ed600>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "inputPoint3": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0.75 0.75]";
CIAttributeDisplayName = "Point 3";
CIAttributeIdentity = "[0.75 0.75]";
CIAttributeType = CIAttributeTypeOffset;
}, "inputPoint2": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0.5 0.5]";
CIAttributeDisplayName = "Point 2";
CIAttributeIdentity = "[0.5 0.5]";
CIAttributeType = CIAttributeTypeOffset;
}, "CIAttributeFilterAvailable_Mac": 10.7, "inputPoint1": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0.25 0.25]";
CIAttributeDisplayName = "Point 1";
CIAttributeIdentity = "[0.25 0.25]";
CIAttributeType = CIAttributeTypeOffset;
}, "inputPoint0": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[0 0]";
CIAttributeDisplayName = "Point 0";
CIAttributeIdentity = "[0 0]";
CIAttributeType = CIAttributeTypeOffset;
}]
>>> CITorusLensDistortion:
---
["CIAttributeFilterAvailable_Mac": 10.4, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 80;
CIAttributeDescription = "The width of the ring.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Torus Lens Distortion, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the torus.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 160;
CIAttributeDescription = "The outer radius of the torus.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 500;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c8f0550>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterName": CITorusLensDistortion, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITorusLensDistortion, "inputRefraction": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "1.7";
CIAttributeDescription = "The refraction of the glass.";
CIAttributeDisplayName = Refraction;
CIAttributeIdentity = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 5;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CITriangleKaleidoscope:
---
["CIAttributeFilterName": CITriangleKaleidoscope, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITriangleKaleidoscope, "inputRotation": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "5.924285296593801";
CIAttributeDescription = "Rotation angle of the triangle.";
CIAttributeDisplayName = Rotation;
CIAttributeSliderMax = "6.283185307179586";
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeAngle;
}, "inputSize": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 700;
CIAttributeDescription = "The size in pixels of the triangle.";
CIAttributeDisplayName = Size;
CIAttributeSliderMax = 1000;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "Input image to generate kaleidoscope effect from.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": Triangle Kaleidoscope, "CIAttributeFilterAvailable_Mac": 10.10, "inputDecay": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.85";
CIAttributeDescription = "The decay determines how fast the color fades from the center triangle.";
CIAttributeDisplayName = Decay;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterCategories": <__NSArrayI 0x7fad884fa420>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputPoint": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the triangular area in the input image.";
CIAttributeDisplayName = Point;
CIAttributeType = CIAttributeTypePosition;
}]
>>> CITriangleTile:
---
["CIAttributeFilterDisplayName": Triangle Tile, "CIAttributeFilterAvailable_iOS": 9, "CIAttributeFilterName": CITriangleTile, "CIAttributeFilterAvailable_Mac": 10.4, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITriangleTile, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887ce620>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CITwelvefoldReflectedTile:
---
["CIAttributeFilterAvailable_Mac": 10.5, "CIAttributeFilterAvailable_iOS": 6, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The x and y position to use as the center of the effect";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterDisplayName": Twelvefold Reflected Tile, "inputWidth": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 100;
CIAttributeDescription = "The width of a tile.";
CIAttributeDisplayName = Width;
CIAttributeIdentity = 100;
CIAttributeMin = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = 1;
CIAttributeType = CIAttributeTypeDistance;
}, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterName": CITwelvefoldReflectedTile, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The angle (in radians) of the tiled pattern.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "3.141592653589793";
CIAttributeSliderMin = "-3.141592653589793";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITwelvefoldReflectedTile, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887cd6d0>(
CICategoryTileEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
]
>>> CITwirlDistortion:
---
["inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 300;
CIAttributeMin = 0;
CIAttributeSliderMax = 500;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterAvailable_Mac": 10.4, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 5, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c90dc50>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "3.141592653589793";
CIAttributeDescription = "The angle (in radians) of the twirl. Values can be positive or negative.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "12.56637061435917";
CIAttributeSliderMin = "-12.56637061435917";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterName": CITwirlDistortion, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CITwirlDistortion, "CIAttributeFilterDisplayName": Twirl Distortion]
>>> CIUnsharpMask:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad89a19f50>(
CICategorySharpen,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "2.5";
CIAttributeDescription = "The radius around a given pixel to apply the unsharp mask. The larger the radius, the more of the image is affected.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 100;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDescription = "The intensity of the effect. The larger the value, the more contrast in the affected area.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterDisplayName": Unsharp Mask, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIUnsharpMask, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterName": CIUnsharpMask]
>>> CIVibrance:
---
["inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_Mac": 10.7, "CIAttributeFilterAvailable_iOS": 5, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIVibrance, "inputAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The amount to adjust the saturation.";
CIAttributeDisplayName = Amount;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = "-1";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "-1";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterName": CIVibrance, "CIAttributeFilterDisplayName": Vibrance, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898d2770>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
]
>>> CIVignette:
---
["CIAttributeFilterAvailable_iOS": 5, "CIAttributeFilterDisplayName": Vignette, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeMax = 2;
CIAttributeMin = 0;
CIAttributeSliderMax = 2;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 0;
CIAttributeDescription = "The intensity of the effect.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = "-1";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "-1";
CIAttributeType = CIAttributeTypeScalar;
}, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad898d5210>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIVignette, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIVignette, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}]
>>> CIVignetteEffect:
---
["CIAttributeFilterDisplayName": Vignette Effect, "CIAttributeFilterAvailable_iOS": 7, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputIntensity": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 1;
CIAttributeDescription = "The intensity of the effect.";
CIAttributeDisplayName = Intensity;
CIAttributeIdentity = 0;
CIAttributeMax = 1;
CIAttributeMin = "-1";
CIAttributeSliderMax = 1;
CIAttributeSliderMin = "-1";
CIAttributeType = CIAttributeTypeScalar;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIVignetteEffect, "CIAttributeFilterName": CIVignetteEffect, "CIAttributeFilterAvailable_Mac": 10.9, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c9126f0>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryStillImage,
CICategoryBuiltIn
)
, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 150;
CIAttributeDescription = "The distance from the center of the effect.";
CIAttributeDisplayName = Radius;
CIAttributeMin = 0;
CIAttributeSliderMax = 2000;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "inputFalloff": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "0.5";
CIAttributeDisplayName = Falloff;
CIAttributeMax = 1;
CIAttributeMin = 0;
CIAttributeSliderMax = 1;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeScalar;
}]
>>> CIVortexDistortion:
---
["CIAttributeFilterAvailable_Mac": 10.4, "inputAngle": {
CIAttributeClass = NSNumber;
CIAttributeDefault = "56.54866776461628";
CIAttributeDescription = "The angle (in radians) of the vortex.";
CIAttributeDisplayName = Angle;
CIAttributeIdentity = 0;
CIAttributeSliderMax = "94.24777960769379";
CIAttributeSliderMin = "-94.24777960769379";
CIAttributeType = CIAttributeTypeAngle;
}, "CIAttributeFilterDisplayName": Vortex Distortion, "inputRadius": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 300;
CIAttributeDescription = "The radius determines how many pixels are used to create the distortion. The larger the radius, the wider the extent of the distortion.";
CIAttributeDisplayName = Radius;
CIAttributeIdentity = 0;
CIAttributeMin = 0;
CIAttributeSliderMax = 800;
CIAttributeSliderMin = 0;
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887d0790>(
CICategoryDistortionEffect,
CICategoryVideo,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIVortexDistortion, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterAvailable_iOS": 6, "CIAttributeFilterName": CIVortexDistortion]
>>> CIWhitePointAdjust:
---
["inputColor": {
CIAttributeClass = CIColor;
CIAttributeDefault = "<CIColor 0x7fad887d2e30 (1 1 1 1) devicergb>";
CIAttributeDescription = "A color to use as the white point.";
CIAttributeDisplayName = Color;
CIAttributeIdentity = "<CIColor 0x7fad887d2ce0 (1 1 1 1) devicergb>";
CIAttributeType = CIAttributeTypeColor;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad887d2520>(
CICategoryColorAdjustment,
CICategoryVideo,
CICategoryStillImage,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIWhitePointAdjust, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": White Point Adjust, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIWhitePointAdjust, "CIAttributeFilterAvailable_Mac": 10.4, "CIAttributeFilterAvailable_iOS": 5]
>>> CIXRay:
---
["CIAttributeFilterCategories": <__NSArrayI 0x7fad887d2c40>(
CICategoryColorEffect,
CICategoryVideo,
CICategoryInterlaced,
CICategoryNonSquarePixels,
CICategoryStillImage,
CICategoryBuiltIn
)
, "CIAttributeFilterName": CIXRay, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterDisplayName": X-Ray, "CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIXRay, "CIAttributeFilterAvailable_Mac": 10.11, "CIAttributeFilterAvailable_iOS": 10]
>>> CIZoomBlur:
---
["CIAttributeReferenceDocumentation": http://developer.apple.com/library/mac/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/filter/ci/CIZoomBlur, "inputCenter": {
CIAttributeClass = CIVector;
CIAttributeDefault = "[150 150]";
CIAttributeDescription = "The center of the effect as x and y coordinates.";
CIAttributeDisplayName = Center;
CIAttributeType = CIAttributeTypePosition;
}, "CIAttributeFilterCategories": <__NSArrayI 0x7fad8c9159b0>(
CICategoryBlur,
CICategoryStillImage,
CICategoryVideo,
CICategoryBuiltIn
)
, "inputAmount": {
CIAttributeClass = NSNumber;
CIAttributeDefault = 20;
CIAttributeDescription = "The zoom-in amount. Larger values result in more zooming in.";
CIAttributeDisplayName = Amount;
CIAttributeIdentity = 0;
CIAttributeSliderMax = 200;
CIAttributeSliderMin = "-200";
CIAttributeType = CIAttributeTypeDistance;
}, "CIAttributeFilterDisplayName": Zoom Blur, "CIAttributeFilterName": CIZoomBlur, "CIAttributeFilterAvailable_Mac": 10.4, "inputImage": {
CIAttributeClass = CIImage;
CIAttributeDescription = "The image to use as an input image. For filters that also use a background image, this is the foreground image.";
CIAttributeDisplayName = Image;
CIAttributeType = CIAttributeTypeImage;
}, "CIAttributeFilterAvailable_iOS": 8.3]
<CIAccordionFoldTransition: 0x7fad8c8fbc90 inputImage=nil inputTargetImage=nil inputBottomHeight=0 inputNumberOfFolds=3 inputFoldShadowAmount=0.1 inputTime=0>
<CIAdditionCompositing: 0x7fad8ca00430 inputImage=nil inputBackgroundImage=nil>
<CIAffineClamp: 0x7fad8991b810 inputImage=nil inputTransform=<NSAffineTransform: 0x7fad88416f60>>
<CIAffineTile: 0x7fad887d49b0 inputImage=nil inputTransform=<NSAffineTransform: 0x7fad8c886610>>
<CIAffineTransform: 0x7fad89b17780 inputImage=nil inputTransform=<NSAffineTransform: 0x7fad8c8869d0>>
<CIAreaAverage: 0x7fad8ca007b0 inputImage=nil inputExtent=[0 0 640 80]>
<CIAreaHistogram: 0x7fad898d60b0 inputImage=nil inputExtent=[0 0 640 80] inputScale=1 inputCount=64>
<CIAreaMaximum: 0x7fad887d5160 inputImage=nil inputExtent=[0 0 640 80]>
<CIAreaMaximumAlpha: 0x7fad887d5480 inputImage=nil inputExtent=[0 0 640 80]>
<CIAreaMinimum: 0x7fad887d5a30 inputImage=nil inputExtent=[0 0 640 80]>
<CIAreaMinimumAlpha: 0x7fad8ca00f50 inputImage=nil inputExtent=[0 0 640 80]>
<CIAreaMinMax: 0x7fad887d5ca0 inputImage=nil inputExtent=[0 0 640 80]>
<CIAreaMinMaxRed: 0x7fad887d57a0 inputImage=nil inputExtent=[0 0 640 80]>
<CIAttributedTextImageGenerator: 0x7fad8ca01960 inputText=nil inputScaleFactor=1>
<CIAztecCodeGenerator: 0x7fad8c916ca0 inputMessage=nil inputCorrectionLevel=23 inputLayers=nil inputCompactStyle=nil>
<CIBarcodeGenerator: 0x7fad887d5800 inputBarcodeDescriptor=nil>
<CIBarsSwipeTransition: 0x7fad887d6410 inputImage=nil inputTargetImage=nil inputAngle=3.141592653589793 inputWidth=30 inputBarOffset=10 inputTime=0>
<CIBicubicScaleTransform: 0x7fad89a1b190 inputImage=nil inputScale=1 inputAspectRatio=1 inputB=0 inputC=0.75>
<CIBlendWithAlphaMask: 0x7fad8c916e10 inputImage=nil inputBackgroundImage=nil inputMaskImage=nil>
<CIBlendWithBlueMask: 0x7fad8c917300 inputImage=nil inputBackgroundImage=nil inputMaskImage=nil>
<CIBlendWithMask: 0x7fad89a1ab90 inputImage=nil inputBackgroundImage=nil inputMaskImage=nil>
<CIBlendWithRedMask: 0x7fad8c915cf0 inputImage=nil inputBackgroundImage=nil inputMaskImage=nil>
<CIBloom: 0x7fad8c917cc0 inputImage=nil inputRadius=10 inputIntensity=0.5>
<CIBokehBlur: 0x7fad89a1b3e0 inputImage=nil inputRadius=20 inputRingAmount=0 inputRingSize=0.1 inputSoftness=1>
<CIBoxBlur: 0x7fad885137f0 inputImage=nil inputRadius=10>
<CIBumpDistortion: 0x7fad8c917040 inputImage=nil inputCenter=[150 150] inputRadius=300 inputScale=0.5>
<CIBumpDistortionLinear: 0x7fad8c918330 inputImage=nil inputCenter=[150 150] inputRadius=300 inputAngle=0 inputScale=0.5>
<CICameraCalibrationLensCorrection: 0x7fad8c918740 inputImage=nil inputAVCameraCalibrationData=nil inputUseInverseLookUpTable=0>
<CICheckerboardGenerator: 0x7fad898d6e80 inputCenter=[150 150] inputColor0=<CIColor 0x7fad884ac920 (1 1 1 1) devicergb> inputColor1=<CIColor 0x7fad884accb0 (0 0 0 1) devicergb> inputWidth=80 inputSharpness=1>
<CICircleSplashDistortion: 0x7fad898d76b0 inputImage=nil inputCenter=[150 150] inputRadius=150>
<CICircularScreen: 0x7fad898d7b70 inputImage=nil inputCenter=[150 150] inputWidth=6 inputSharpness=0.7>
<CICircularWrap: 0x7fad898d84d0 inputImage=nil inputCenter=[150 150] inputRadius=150 inputAngle=0>
<CIClamp: 0x7fad898d7c60 inputImage=nil inputExtent=[0 0 640 80]>
<CICMYKHalftone: 0x7fad898d9050 inputImage=nil inputCenter=[150 150] inputWidth=6 inputAngle=0 inputSharpness=0.7 inputGCR=1 inputUCR=0.5>
<CICode128BarcodeGenerator: 0x7fad898d88e0 inputMessage=nil inputQuietSpace=7 inputBarcodeHeight=32>
<CIColorBlendMode: 0x7fad8c9188d0 1 inputImage=nil inputBackgroundImage=nil>
<CIColorBurnBlendMode: 0x7fad8c918a90 inputImage=nil inputBackgroundImage=nil>
<CIColorClamp: 0x7fad8c919920 inputImage=nil inputMinComponents=[0 0 0 0] inputMaxComponents=[1 1 1 1]>
<CIColorControls: 0x7fad8ca00d90 inputImage=nil inputSaturation=1 inputBrightness=0 inputContrast=1>
<CIColorCrossPolynomial: 0x7fad8ca00c70 inputImage=nil inputRedCoefficients=[1 0 0 0 0 0 0 0 0 0] inputGreenCoefficients=[0 1 0 0 0 0 0 0 0 0] inputBlueCoefficients=[0 0 1 0 0 0 0 0 0 0]>
<CIColorCube: 0x7fad884b1920 inputImage=nil inputCubeDimension=2 inputCubeData={length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f }>
<CIColorCubesMixedWithMask: 0x7fad8c8f38d0 inputImage=nil inputMaskImage=nil inputCubeDimension=2 inputCube0Data={length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f } inputCube1Data={length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f } inputColorSpace=nil>
<CIColorCubeWithColorSpace: 0x7fad8c894840 inputImage=nil inputCubeDimension=2 inputCubeData={length = 128, bytes = 0x00000000 00000000 00000000 0000803f ... 0000803f 0000803f } inputColorSpace=nil>
<CIColorCurves: 0x7fad8ca01790 inputImage=nil inputCurvesData={length = 36, bytes = 0x00000000 00000000 00000000 0000003f ... 0000803f 0000803f } inputCurvesDomain=[0 1] inputColorSpace=nil>
<CIColorDodgeBlendMode: 0x7fad8ca02170 inputImage=nil inputBackgroundImage=nil>
<CIColorInvert: 0x7fad88514b10 inputImage=nil>
<CIColorMap: 0x7fad88515fa0 inputImage=nil inputGradientImage=nil>
<CIColorMatrix: 0x7fad89b17c50 inputImage=nil inputRVector=[1 0 0 0] inputGVector=[0 1 0 0] inputBVector=[0 0 1 0] inputAVector=[0 0 0 1] inputBiasVector=[0 0 0 0]>
<CIColorMonochrome: 0x7fad8ca03000 inputImage=nil inputColor=<CIColor 0x7fad88767290 (0.6 0.45 0.3 1) devicergb> inputIntensity=1>
<CIColorPolynomial: 0x7fad885152e0 inputImage=nil inputRedCoefficients=[0 1 0 0] inputGreenCoefficients=[0 1 0 0] inputBlueCoefficients=[0 1 0 0] inputAlphaCoefficients=[0 1 0 0]>
<CIColorPosterize: 0x7fad88515e60 inputImage=nil inputLevels=6>
<CIColumnAverage: 0x7fad8991bc70 inputImage=nil inputExtent=[0 0 640 80]>
<CIComicEffect: 0x7fad887cd230 inputImage=nil>
<CIConstantColorGenerator: 0x7fad887cd500 inputColor=<CIColor 0x7fad8876ac30 (1 0 0 1) devicergb>>
<CIConvolution3X3: 0x7fad8871f850 inputImage=nil inputWeights=[0 0 0 0 1 0 0 0 0] inputBias=0>
<CIConvolution5X5: 0x7fad88756f90 inputImage=nil inputWeights=[0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0] inputBias=0>
<CIConvolution7X7: 0x7fad8ca02ec0 inputImage=nil inputWeights=[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] inputBias=0>
<CIConvolution9Horizontal: 0x7fad8ca03060 inputImage=nil inputWeights=[0 0 0 0 1 0 0 0 0] inputBias=0>
<CIConvolution9Vertical: 0x7fad89a02ac0 inputImage=nil inputWeights=[0 0 0 0 1 0 0 0 0] inputBias=0>
<CICopyMachineTransition: 0x7fad89a1bb80 inputImage=nil inputTargetImage=nil inputExtent=[0 0 300 300] inputColor=<CIColor 0x7fad884c7790 (0.6 1 0.8 1) devicergb> inputTime=0 inputAngle=0 inputWidth=200 inputOpacity=1.3>
<CICoreMLModelFilter: 0x7fad89a1c7b0 inputImage=nil inputModel=nil inputHeadIndex=0 inputSoftmaxNormalization=0>
<CICrop: 0x7fad88721780 inputImage=nil inputRectangle=[-8.98847e+307 -8.98847e+307 1.79769e+308 1.79769e+308]>
<CICrystallize: 0x7fad89b18370 inputImage=nil inputRadius=20 inputCenter=[150 150]>
<CIDarkenBlendMode: 0x7fad89b18e60 inputImage=nil inputBackgroundImage=nil>
<CIDepthBlurEffect: 0x7fad89b18ec0 inputImage=nil inputDisparityImage=nil inputMatteImage=nil inputHairImage=nil inputAperture=0 inputLeftEyePositions=[-1 -1] inputRightEyePositions=[-1 -1] inputChinPositions=[-1 -1] inputNosePositions=[-1 -1] inputFocusRect=[-8.98847e+307 -8.98847e+307 1.79769e+308 1.79769e+308] inputLumaNoiseScale=0 inputScaleFactor=1 inputCalibrationData=nil inputAuxDataMetadata=nil inputShape=nil>
<CIDepthOfField: 0x7fad8c91bb70 inputImage=nil inputPoint0=[0 300] inputPoint1=[300 300] inputSaturation=1.5 inputUnsharpMaskRadius=2.5 inputUnsharpMaskIntensity=0.5 inputRadius=6>
<CIDepthToDisparity: 0x7fad8c91bea0 inputImage=nil>
<CIDifferenceBlendMode: 0x7fad887d6db0 inputImage=nil inputBackgroundImage=nil>
<CIDiscBlur: 0x7fad8ca030f0 inputImage=nil inputRadius=8>
<CIDisintegrateWithMaskTransition: 0x7fad887d75e0 inputImage=nil inputTargetImage=nil inputMaskImage=nil inputTime=0 inputShadowRadius=8 inputShadowDensity=0.65 inputShadowOffset=[0 -10]>
<CIDisparityToDepth: 0x7fad887d7370 inputImage=nil>
<CIDisplacementDistortion: 0x7fad887d7fb0 inputImage=nil inputDisplacementImage=nil inputScale=50>
<CIDissolveTransition: 0x7fad8c91c590 inputImage=nil inputTargetImage=nil inputTime=0>
<CIDither: 0x7fad887d7e50 inputImage=nil inputIntensity=0.1>
<CIDivideBlendMode: 0x7fad8ca05b50 inputImage=nil inputBackgroundImage=nil>
<CIDocumentEnhancer: 0x7fad898d3e20 inputImage=nil inputAmount=1>
<CIDotScreen: 0x7fad8991c320 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=6 inputSharpness=0.7>
<CIDroste: 0x7fad8ca06300 inputImage=nil inputInsetPoint0=[200 200] inputInsetPoint1=[400 400] inputStrands=1 inputPeriodicity=1 inputRotation=0 inputZoom=1>
<CIEdgePreserveUpsampleFilter: 0x7fad887d8140 inputImage=nil inputSmallImage=nil inputSpatialSigma=3 inputLumaSigma=0.15>
<CIEdges: 0x7fad887d81b0 inputImage=nil inputIntensity=1>
<CIEdgeWork: 0x7fad887d92d0 inputImage=nil inputRadius=3>
<CIEightfoldReflectedTile: 0x7fad887d9330 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CIExclusionBlendMode: 0x7fad898c17a0 inputImage=nil inputBackgroundImage=nil>
<CIExposureAdjust: 0x7fad8ca06820 inputImage=nil inputEV=0>
<CIFalseColor: 0x7fad8c91bef0 inputImage=nil inputColor0=<CIColor 0x7fad8877efc0 (0.3 0 0 1) devicergb> inputColor1=<CIColor 0x7fad8877f4d0 (1 0.9 0.8 1) devicergb>>
<CIFlashTransition: 0x7fad8ca06880 inputImage=nil inputTargetImage=nil inputCenter=[150 150] inputExtent=[0 0 300 300] inputColor=<CIColor 0x7fad884d19f0 (1 0.8 0.6 1) devicergb> inputTime=0 inputMaxStriationRadius=2.58 inputStriationStrength=0.5 inputStriationContrast=1.375 inputFadeThreshold=0.85>
<CIFourfoldReflectedTile: 0x7fad89b196a0 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100 inputAcuteAngle=1.570796326794897>
<CIFourfoldRotatedTile: 0x7fad89b189c0 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CIFourfoldTranslatedTile: 0x7fad8991d590 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100 inputAcuteAngle=1.570796326794897>
<CIGaborGradients: 0x7fad8991db80 inputImage=nil>
<CIGammaAdjust: 0x7fad8ca06a70 inputImage=nil inputPower=1>
<CIGaussianBlur: 0x7fad8991d3d0 inputImage=nil inputRadius=10>
<CIGaussianGradient: 0x7fad8991e230 inputCenter=[150 150] inputColor0=<CIColor 0x7fad8989adc0 (1 1 1 1) devicergb> inputColor1=<CIColor 0x7fad8989ae90 (0 0 0 0) devicergb> inputRadius=300>
<CIGlassDistortion: 0x7fad8991ea00 inputImage=nil inputTexture=nil inputCenter=[150 150] inputScale=200>
<CIGlassLozenge: 0x7fad8991efb0 inputImage=nil inputPoint0=[150 150] inputPoint1=[350 150] inputRadius=100 inputRefraction=1.7>
<CIGlideReflectedTile: 0x7fad8991f920 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CIGloom: 0x7fad8ca06b20 inputImage=nil inputRadius=10 inputIntensity=0.5>
<CIGuidedFilter: 0x7fad8ca06f20 inputImage=nil inputGuideImage=nil inputRadius=1 inputEpsilon=0.0001>
<CIHardLightBlendMode: 0x7fad89b1a9e0 inputImage=nil inputBackgroundImage=nil>
<CIHatchedScreen: 0x7fad887da1d0 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=6 inputSharpness=0.7>
<CIHeightFieldFromMask: 0x7fad887da370 inputImage=nil inputRadius=10>
<CIHexagonalPixellate: 0x7fad8c91b6f0 inputImage=nil inputCenter=[150 150] inputScale=8>
<CIHighlightShadowAdjust: 0x7fad8c91c9b0 2 inputImage=nil inputRadius=0 inputShadowAmount=0 inputHighlightAmount=1>
<CIHistogramDisplayFilter: 0x7fad8c91cf50 inputImage=nil inputHeight=100 inputHighLimit=1 inputLowLimit=0>
<CIHoleDistortion: 0x7fad8c91d280 inputImage=nil inputCenter=[150 150] inputRadius=150>
<CIHueAdjust: 0x7fad8ca06db0 inputImage=nil inputAngle=0>
<CIHueBlendMode: 0x7fad89a1c8a0 1 inputImage=nil inputBackgroundImage=nil>
<CIHueSaturationValueGradient: 0x7fad89a1d210 inputValue=1 inputRadius=300 inputSoftness=1 inputDither=1 inputColorSpace=<CGColorSpace 0x7fad88603360> (kCGColorSpaceICCBased; kCGColorSpaceModelRGB; sRGB IEC61966-2.1)>
<CIKaleidoscope: 0x7fad89920800 inputImage=nil inputCount=6 inputCenter=[150 150] inputAngle=0>
<CIKeystoneCorrectionCombined: 0x7fad899212a0 inputImage=nil inputFocalLength=28 inputTopLeft=nil inputTopRight=nil inputBottomRight=nil inputBottomLeft=nil>
<CIKeystoneCorrectionHorizontal: 0x7fad89921390 inputImage=nil inputFocalLength=28 inputTopLeft=nil inputTopRight=nil inputBottomRight=nil inputBottomLeft=nil>
<CIKeystoneCorrectionVertical: 0x7fad89921b10 inputImage=nil inputFocalLength=28 inputTopLeft=nil inputTopRight=nil inputBottomRight=nil inputBottomLeft=nil>
<CIKMeans: 0x7fad8986bbd0 inputImage=nil inputExtent=[0 0 640 80] inputMeans=nil inputCount=8 inputPasses=5 inputPerceptual=0>
<CILabDeltaE: 0x7fad88516440 inputImage=nil inputImage2=nil>
<CILanczosScaleTransform: 0x7fad898d99d0 inputImage=nil inputScale=1 inputAspectRatio=1>
<CILenticularHaloGenerator: 0x7fad8c91d380 inputCenter=[150 150] inputColor=<CIColor 0x7fad88792ee0 (1 0.9 0.8 1) devicergb> inputHaloRadius=70 inputHaloWidth=87 inputHaloOverlap=0.77 inputStriationStrength=0.5 inputStriationContrast=1 inputTime=0>
<CILightenBlendMode: 0x7fad8c91ea70 inputImage=nil inputBackgroundImage=nil>
<CILightTunnel: 0x7fad887da740 inputImage=nil inputCenter=[150 150] inputRotation=0 inputRadius=100>
<CILinearBurnBlendMode: 0x7fad887db390 1 inputImage=nil inputBackgroundImage=nil>
<CILinearDodgeBlendMode: 0x7fad887da560 inputImage=nil inputBackgroundImage=nil>
<CILinearGradient: 0x7fad88516750 inputPoint0=[0 0] inputPoint1=[200 200] inputColor0=<CIColor 0x7fad88798350 (1 1 1 1) devicergb> inputColor1=<CIColor 0x7fad887975f0 (0 0 0 1) devicergb>>
<CILinearToSRGBToneCurve: 0x7fad89b1b190 inputImage=nil>
<CILineOverlay: 0x7fad8ca07860 inputImage=nil inputNRNoiseLevel=0.07000000000000001 inputNRSharpness=0.71 inputEdgeIntensity=1 inputThreshold=0.1 inputContrast=50>
<CILineScreen: 0x7fad8ca073e0 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=6 inputSharpness=0.7>
<CILuminosityBlendMode: 0x7fad8991f5d0 1 inputImage=nil inputBackgroundImage=nil>
<CIMaskedVariableBlur: 0x7fad898d9430 inputImage=nil inputMask=nil inputRadius=5>
<CIMaskToAlpha: 0x7fad887dbc00 inputImage=nil>
<CIMaximumComponent: 0x7fad898d9380 inputImage=nil>
<CIMaximumCompositing: 0x7fad88515c20 inputImage=nil inputBackgroundImage=nil>
<CIMedianFilter: 0x7fad88517020 inputImage=nil>
<CIMeshGenerator: 0x7fad89921c00 inputWidth=1.5 inputColor=<CIColor 0x7fad899187d0 (1 1 1 1) devicergb> inputMesh=nil>
<CIMinimumComponent: 0x7fad887dc3e0 inputImage=nil>
<CIMinimumCompositing: 0x7fad887dcac0 inputImage=nil inputBackgroundImage=nil>
<CIMix: 0x7fad898da210 inputImage=nil inputBackgroundImage=nil inputAmount=1>
<CIModTransition: 0x7fad89b1b460 inputImage=nil inputTargetImage=nil inputCenter=[150 150] inputTime=0 inputAngle=2 inputRadius=150 inputCompression=300>
<CIMorphologyGradient: 0x7fad899222f0 inputImage=nil inputRadius=5>
<CIMorphologyMaximum: 0x7fad899227c0 inputImage=nil inputRadius=0>
<CIMorphologyMinimum: 0x7fad89923160 inputImage=nil inputRadius=0>
<CIMorphologyRectangleMaximum: 0x7fad8ca08080 inputImage=nil inputWidth=5 inputHeight=5>
<CIMorphologyRectangleMinimum: 0x7fad8ca088d0 inputImage=nil inputWidth=5 inputHeight=5>
<CIMotionBlur: 0x7fad89a1cd90 inputImage=nil inputRadius=20 inputAngle=0>
<CIMultiplyBlendMode: 0x7fad887dcff0 inputImage=nil inputBackgroundImage=nil>
<CIMultiplyCompositing: 0x7fad8ca08d80 inputImage=nil inputBackgroundImage=nil>
<CINinePartStretched: 0x7fad89b1b9d0 inputImage=nil inputBreakpoint0=[50 50] inputBreakpoint1=[150 150] inputGrowAmount=[100 100]>
<CINinePartTiled: 0x7fad8c91e290 inputImage=nil inputBreakpoint0=[50 50] inputBreakpoint1=[150 150] inputGrowAmount=[100 100] inputFlipYTiles=1>
<CINoiseReduction: 0x7fad8c91eed0 inputImage=nil inputNoiseLevel=0.02 inputSharpness=0.4>
<CIOpTile: 0x7fad887dd6d0 inputImage=nil inputCenter=[150 150] inputScale=2.8 inputAngle=0 inputWidth=65>
<CIOverlayBlendMode: 0x7fad8c91f470 inputImage=nil inputBackgroundImage=nil>
<CIPageCurlTransition: 0x7fad8c91fbd0 inputImage=nil inputTargetImage=nil inputBacksideImage=nil inputShadingImage=nil inputExtent=[0 0 300 300] inputTime=0 inputAngle=0 inputRadius=100>
<CIPageCurlWithShadowTransition: 0x7fad8c9205c0 inputImage=nil inputTargetImage=nil inputBacksideImage=nil inputExtent=[0 0 0 0] inputTime=0 inputAngle=0 inputRadius=100 inputShadowSize=0.5 inputShadowAmount=0.7 inputShadowExtent=[0 0 0 0]>
<CIPaletteCentroid: 0x7fad8c920330 inputImage=nil inputPaletteImage=nil inputPerceptual=0>
<CIPalettize: 0x7fad887dd880 inputImage=nil inputPaletteImage=nil inputPerceptual=0>
<CIParallelogramTile: 0x7fad89b1c810 inputImage=nil inputCenter=[150 150] inputAngle=0 inputAcuteAngle=1.570796326794897 inputWidth=100>
<CIPDF417BarcodeGenerator: 0x7fad89b1ce50 inputMessage=nil inputMinWidth=nil inputMaxWidth=nil inputMinHeight=nil inputMaxHeight=nil inputDataColumns=nil inputRows=nil inputPreferredAspectRatio=nil inputCompactionMode=nil inputCompactStyle=nil inputCorrectionLevel=nil inputAlwaysSpecifyCompaction=nil>
<CIPerspectiveCorrection: 0x7fad89b1cc20 inputImage=nil inputTopLeft=[118 484] inputTopRight=[646 507] inputBottomRight=[548 140] inputBottomLeft=[155 153] inputCrop=1>
<CIPerspectiveRotate: 0x7fad89b1de30 inputImage=nil inputFocalLength=28 inputPitch=0 inputYaw=0 inputRoll=0>
<CIPerspectiveTile: 0x7fad89b1dc70 inputImage=nil inputTopLeft=[118 484] inputTopRight=[646 507] inputBottomRight=[548 140] inputBottomLeft=[155 153]>
<CIPerspectiveTransform: 0x7fad887ddac0 inputImage=nil inputTopLeft=[118 484] inputTopRight=[646 507] inputBottomRight=[548 140] inputBottomLeft=[155 153]>
<CIPerspectiveTransformWithExtent: 0x7fad8c920ed0 inputImage=nil inputExtent=[0 0 300 300] inputTopLeft=[118 484] inputTopRight=[646 507] inputBottomRight=[548 140] inputBottomLeft=[155 153]>
<CIPhotoEffectChrome: 0x7fad887ddb30 0 inputImage=nil>
<CIPhotoEffectFade: 0x7fad887de9a0 0 inputImage=nil>
<CIPhotoEffectInstant: 0x7fad88516660 1 inputImage=nil>
<CIPhotoEffectMono: 0x7fad89a1d9c0 2 inputImage=nil>
<CIPhotoEffectNoir: 0x7fad89a1de60 1 inputImage=nil>
<CIPhotoEffectProcess: 0x7fad89a1dc30 0 inputImage=nil>
<CIPhotoEffectTonal: 0x7fad89a1dc90 1 inputImage=nil>
<CIPhotoEffectTransfer: 0x7fad89a1dde0 1 inputImage=nil>
<CIPinchDistortion: 0x7fad89a1e7e0 inputImage=nil inputCenter=[150 150] inputRadius=300 inputScale=0.5>
<CIPinLightBlendMode: 0x7fad898dabf0 inputImage=nil inputBackgroundImage=nil>
<CIPixellate: 0x7fad89b1eb60 inputImage=nil inputCenter=[150 150] inputScale=8>
<CIPointillize: 0x7fad89b1ebc0 inputImage=nil inputRadius=20 inputCenter=[150 150]>
<CIQRCodeGenerator: 0x7fad89922b10 inputMessage=nil inputCorrectionLevel=M>
<CIRadialGradient: 0x7fad8c920fe0 inputCenter=[150 150] inputRadius0=5 inputRadius1=100 inputColor0=<CIColor 0x7fad898ba260 (1 1 1 1) devicergb> inputColor1=<CIColor 0x7fad898ba610 (0 0 0 1) devicergb>>
<CIRandomGenerator: 0x7fad8ca09220>
<CIRippleTransition: 0x7fad898db4d0 inputImage=nil inputTargetImage=nil inputShadingImage=nil inputCenter=[150 150] inputExtent=[0 0 300 300] inputTime=0 inputWidth=100 inputScale=50>
<CIRoundedRectangleGenerator: 0x7fad8c921ab0 inputExtent=[0 0 100 100] inputRadius=10 inputColor=<CIColor 0x7fad887b78a0 (1 1 1 1) devicergb>>
<CIRowAverage: 0x7fad898db560 inputImage=nil inputExtent=[0 0 640 80]>
<CISaliencyMapFilter: 0x7fad898db9f0 inputImage=nil>
<CISampleNearest: 0x7fad89a1e850 inputImage=nil>
<CISaturationBlendMode: 0x7fad8987a6c0 1 inputImage=nil inputBackgroundImage=nil>
<CIScreenBlendMode: 0x7fad89883970 inputImage=nil inputBackgroundImage=nil>
<CISepiaTone: 0x7fad89923660 inputImage=nil inputIntensity=1>
<CIShadedMaterial: 0x7fad89b1f280 inputImage=nil inputShadingImage=nil inputScale=10>
<CISharpenLuminance: 0x7fad89b0c2d0 inputImage=nil inputSharpness=0.4 inputRadius=1.69>
<CISixfoldReflectedTile: 0x7fad89a1f380 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CISixfoldRotatedTile: 0x7fad89a1f5d0 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CISmoothLinearGradient: 0x7fad89a1f530 inputPoint0=[0 0] inputPoint1=[200 200] inputColor0=<CIColor 0x7fad8c8dd9f0 (1 1 1 1) devicergb> inputColor1=<CIColor 0x7fad8c8dcec0 (0 0 0 1) devicergb>>
<CISoftLightBlendMode: 0x7fad89892900 inputImage=nil inputBackgroundImage=nil>
<CISourceAtopCompositing: 0x7fad898ad460 inputImage=nil inputBackgroundImage=nil>
<CISourceInCompositing: 0x7fad884b43c0 inputImage=nil inputBackgroundImage=nil>
<CISourceOutCompositing: 0x7fad884b4420 inputImage=nil inputBackgroundImage=nil>
<CISourceOverCompositing: 0x7fad89923be0 inputImage=nil inputBackgroundImage=nil>
<CISpotColor: 0x7fad88777c60 inputImage=nil inputCenterColor1=<CIColor 0x7fad887c49d0 (0.0784 0.0627 0.0706 1) devicergb> inputReplacementColor1=<CIColor 0x7fad887c4aa0 (0.4392 0.1922 0.1961 1) devicergb> inputCloseness1=0.22 inputContrast1=0.98 inputCenterColor2=<CIColor 0x7fad887c4cd0 (0.5255 0.3059 0.3451 1) devicergb> inputReplacementColor2=<CIColor 0x7fad887c4da0 (0.9137 0.5608 0.5059 1) devicergb> inputCloseness2=0.15 inputContrast2=0.98 inputCenterColor3=<CIColor 0x7fad887c4fd0 (0.9216 0.4549 0.3333 1) devicergb> inputReplacementColor3=<CIColor 0x7fad887c50a0 (0.9098 0.7529 0.6078 1) devicergb> inputCloseness3=0.5 inputContrast3=0.99>
<CISpotLight: 0x7fad89b1fb80 inputImage=nil inputLightPosition=[400 600 150] inputLightPointsAt=[200 200 0] inputBrightness=3 inputConcentration=0.1 inputColor=<CIColor 0x7fad887c5da0 (1 1 1 1) devicergb>>
<CISRGBToneCurveToLinear: 0x7fad89b1ffc0 inputImage=nil>
<CIStarShineGenerator: 0x7fad89b207b0 inputCenter=[150 150] inputColor=<CIColor 0x7fad887c6cc0 (1 0.8 0.6 1) devicergb> inputRadius=50 inputCrossScale=15 inputCrossAngle=0.6 inputCrossOpacity=-2 inputCrossWidth=2.5 inputEpsilon=-2>
<CIStraightenFilter: 0x7fad89b20f90 inputImage=nil inputAngle=0>
<CIStretchCrop: 0x7fad89b20840 inputImage=nil inputSize=[1280 720] inputCropAmount=0.25 inputCenterStretchAmount=0.25>
<CIStripesGenerator: 0x7fad884d8430 inputCenter=[150 150] inputColor0=<CIColor 0x7fad8c906940 (1 1 1 1) devicergb> inputColor1=<CIColor 0x7fad8c9088d0 (0 0 0 1) devicergb> inputWidth=80 inputSharpness=1>
<CISubtractBlendMode: 0x7fad88517350 inputImage=nil inputBackgroundImage=nil>
<CISunbeamsGenerator: 0x7fad885181b0 inputCenter=[150 150] inputColor=<CIColor 0x7fad8c8e7aa0 (1 0.5 0 1) devicergb> inputSunRadius=40 inputMaxStriationRadius=2.58 inputStriationStrength=0.5 inputStriationContrast=1.375 inputTime=0>
<CISwipeTransition: 0x7fad898b9070 inputImage=nil inputTargetImage=nil inputExtent=[0 0 300 300] inputColor=<CIColor 0x7fad887c68f0 (1 1 1 1) devicergb> inputTime=0 inputAngle=0 inputWidth=300 inputOpacity=0>
<CITemperatureAndTint: 0x7fad898dbd70 inputImage=nil inputNeutral=[6500 0] inputTargetNeutral=[6500 0]>
<CITextImageGenerator: 0x7fad88518890 inputText=nil inputFontName=HelveticaNeue inputFontSize=12 inputScaleFactor=1>
<CIThermal: 0x7fad89923cf0 inputImage=nil>
<CIToneCurve: 0x7fad899236c0 inputImage=nil inputPoint0=[0 0] inputPoint1=[0.25 0.25] inputPoint2=[0.5 0.5] inputPoint3=[0.75 0.75] inputPoint4=[1 1]>
<CITorusLensDistortion: 0x7fad89923450 inputImage=nil inputCenter=[150 150] inputRadius=160 inputWidth=80 inputRefraction=1.7>
<CITriangleKaleidoscope: 0x7fad89a1f310 inputImage=nil inputPoint=[150 150] inputSize=700 inputRotation=5.924285296593801 inputDecay=0.85>
<CITriangleTile: 0x7fad89a20250 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CITwelvefoldReflectedTile: 0x7fad89a1ff70 inputImage=nil inputCenter=[150 150] inputAngle=0 inputWidth=100>
<CITwirlDistortion: 0x7fad89a20730 inputImage=nil inputCenter=[150 150] inputRadius=300 inputAngle=3.141592653589793>
<CIUnsharpMask: 0x7fad89b20c30 inputImage=nil inputRadius=2.5 inputIntensity=0.5>
<CIVibrance: 0x7fad89b20c90 inputImage=nil inputAmount=0>
<CIVignette: 0x7fad89924970 inputImage=nil inputIntensity=0 inputRadius=1>
<CIVignetteEffect: 0x7fad899247f0 inputImage=nil inputCenter=[150 150] inputRadius=150 inputIntensity=1 inputFalloff=0.5>
<CIVortexDistortion: 0x7fad89925160 inputImage=nil inputCenter=[150 150] inputRadius=300 inputAngle=56.54866776461628>
<CIWhitePointAdjust: 0x7fad899259e0 inputImage=nil inputColor=<CIColor 0x7fad8c8f4580 (1 1 1 1) devicergb>>
<CIXRay: 0x7fad89925a40 inputImage=nil>
<CIZoomBlur: 0x7fad899266e0 inputImage=nil inputCenter=[150 150] inputAmount=20>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment