[View] [Edit] [Lock] [References] [Attachments] [History] [Home] [Changes] [Search] [Help]
api[apple,CoreImage] constants
Smalltalk includesKey: #SDKConstants ifFalse: [
self @> #(api sdk)
]!
SDKConstants
subclass: #CoreImageConstants
category: #CoreImage!
! CoreImageConstants class methodsFor: #private !
validNames
" Private - Return valid names for constant. "
^#(
"CIContext Constants"
kCIContextOutputColorSpace
kCIContextWorkingColorSpace
kCIContextUseSoftwareRenderer
kCIContextPriorityRequestLow
kCIContextWorkingFormat
"CIDetector types"
#CIDetectorTypeFace
#CIDetectorTypeRectangle
#CIDetectorTypeQRCode
#CIDetectorTypeText
"CIDetector configuration keys"
#CIDetectorAccuracy
#CIDetectorTracking
#CIDetectorMinFeatureSize
#CIDetectorNumberOfAngles
"CIDetector accuracy options"
#CIDetectorAccuracyLow
#CIDetectorAccuracyHigh
"CIDetector feature detection keys"
#CIDetectorImageOrientation
#CIDetectorEyeBlink
#CIDetectorSmile
#CIDetectorFocalLength
#CIDetectorAspectRatio
#CIDetectorReturnSubFeatures
"CIFeature Types"
#CIFeatureTypeFace
#CIFeatureTypeRectangle
#CIFeatureTypeQRCode
#CIFeatureTypeText
"CIFilter Attribute Keys"
kCIAttributeFilterName
kCIAttributeFilterDisplayName
kCIAttributeDescription
kCIAttributeFilterAvailable_Mac
kCIAttributeFilterAvailable_iOS
kCIAttributeReferenceDocumentation
kCIAttributeFilterCategories
kCIAttributeClass
kCIAttributeType
kCIAttributeMin
kCIAttributeMax
kCIAttributeSliderMin
kCIAttributeSliderMax
kCIAttributeDefault
kCIAttributeIdentity
kCIAttributeName
kCIAttributeDisplayName
"CIFilter Data Type Attributes"
kCIAttributeTypeTime
kCIAttributeTypeScalar
kCIAttributeTypeDistance
kCIAttributeTypeAngle
kCIAttributeTypeBoolean
kCIAttributeTypeInteger
kCIAttributeTypeCount
"CIFilter Vector data types"
kCIAttributeTypePosition
kCIAttributeTypeOffset
kCIAttributeTypePosition3
kCIAttributeTypeRectangle
"CIFilter Color Attribute Keys"
kCIAttributeTypeOpaqueColor
kCIAttributeTypeGradient
kCIAttributeTypeColor
"CIFilter Image Attribute Keys"
kCIAttributeTypeImage
kCIAttributeTypeTransform
"CIFilter Filter Category Keys"
kCICategoryDistortionEffect
kCICategoryGeometryAdjustment
kCICategoryCompositeOperation
kCICategoryHalftoneEffect
kCICategoryColorAdjustment
kCICategoryColorEffect
kCICategoryTransition
kCICategoryTileEffect
kCICategoryGenerator
kCICategoryReduction
kCICategoryGradient
kCICategoryStylize
kCICategorySharpen
kCICategoryBlur
kCICategoryVideo
kCICategoryStillImage
kCICategoryInterlaced
kCICategoryNonSquarePixels
kCICategoryHighDynamicRange
kCICategoryBuiltIn
kCICategoryFilterGenerator
"CIFilter User Interface Control Options"
kCIUIParameterSet
kCIUISetBasic
kCIUISetIntermediate
kCIUISetAdvanced
kCIUISetDevelopment
"CIFilter Parameter Keys"
kCIOutputImageKey
kCIInputBackgroundImageKey
kCIInputImageKey
kCIInputTimeKey
kCIInputTransformKey
kCIInputScaleKey
kCIInputAspectRatioKey
kCIInputCenterKey
kCIInputRadiusKey
kCIInputAngleKey
kCIInputRefractionKey
kCIInputWidthKey
kCIInputSharpnessKey
kCIInputIntensityKey
kCIInputEVKey
kCIInputSaturationKey
kCIInputColorKey
kCIInputBrightnessKey
kCIInputContrastKey
kCIInputGradientImageKey
kCIInputMaskImageKey
kCIInputShadingImageKey
kCIInputTargetImageKey
kCIInputExtentKey
kCIInputVersionKey
"CIFilter RAW Image Options"
kCIInputNeutralLocation
kCIInputBiasKey
"CIImage Pixel Formats"
kCIFormatARGB8
kCIFormatBGRA8
kCIFormatRGBA8
kCIFormatABGR8
kCIFormatRGBAf
kCIFormatRGBAh
kCIFormatA8
kCIFormatA16
kCIFormatAh
kCIFormatAf
kCIFormatR8
kCIFormatR16
kCIFormatRh
kCIFormatRf
kCIFormatRG8
kCIFormatRG16
kCIFormatRGh
kCIFormatRGf
"CIImage Image Dictionary Keys"
kCIImageColorSpace
kCIImageProperties
"CIImage Autoadjustment Keys"
kCIImageAutoAdjustEnhance
kCIImageAutoAdjustRedEye
kCIImageAutoAdjustFeatures
kCIImageAutoAdjustCrop
kCIImageAutoAdjustLevel
"CISampler Option Keys"
kCISamplerAffineMatrix
kCISamplerWrapMode
kCISamplerFilterMode
kCISamplerColorSpace
"CISampler Option Values"
kCISamplerWrapBlack
kCISamplerWrapClamp
kCISamplerFilterNearest
kCISamplerFilterLinear
)! !