public class CIImage extends NSObject implements NSSecureCoding, NSCopying
NSObject.Function_instanceMethodForSelector_ret, NSObject.Function_methodForSelector_ret| Modifier | Constructor and Description |
|---|---|
protected |
CIImage(org.moe.natj.general.Pointer peer) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
_supportsSecureCoding()
This property must return YES on all classes that allow secure coding.
|
static boolean |
accessInstanceVariablesDirectly() |
static CIImage |
alloc() |
static CIImage |
allocWithZone(org.moe.natj.general.ptr.VoidPtr zone) |
NSArray<? extends CIFilter> |
autoAdjustmentFilters()
Return an array of filters to apply to an image to improve its
skin tones, saturation, contrast, shadows and repair red-eyes or LED-eyes.
|
NSArray<? extends CIFilter> |
autoAdjustmentFiltersWithOptions(NSDictionary<java.lang.String,?> options) |
static boolean |
automaticallyNotifiesObserversForKey(java.lang.String key) |
static CIImage |
blackImage()
Convenience constant color CIImages in the sRGB colorspace.
|
static CIImage |
blueImage() |
static void |
cancelPreviousPerformRequestsWithTarget(java.lang.Object aTarget) |
static void |
cancelPreviousPerformRequestsWithTargetSelectorObject(java.lang.Object aTarget,
org.moe.natj.objc.SEL aSelector,
java.lang.Object anArgument) |
CGImageRef |
CGImage()
Returns a CGImageRef if the CIImage was created with [CIImage imageWithCGImage] or [CIImage imageWithContentsOfURL] and no options.
|
static NSArray<java.lang.String> |
classFallbacksForKeyedArchiver() |
static org.moe.natj.objc.Class |
classForKeyedUnarchiver() |
static CIImage |
clearImage() |
CGColorSpaceRef |
colorSpace()
Returns if possible the color space of the image it was defined in.
|
java.lang.Object |
copyWithZone(org.moe.natj.general.ptr.VoidPtr zone) |
static CIImage |
cyanImage() |
static java.lang.String |
debugDescription_static() |
AVDepthData |
depthData()
Returns a AVDepthData if the CIImage was created with [CIImage imageWithData] or [CIImage imageWithContentsOfURL] and.
|
static java.lang.String |
description_static() |
static CIImage |
emptyImage()
Create an empty Image.
|
void |
encodeWithCoder(NSCoder coder) |
CGRect |
extent()
Return a rect the defines the bounds of non-(0,0,0,0) pixels
|
static CIImage |
grayImage() |
static CIImage |
greenImage() |
static long |
hash_static() |
CIImage |
imageByApplyingCGOrientation(int orientation)
Returns a new image representing the original image transformeded for the given CGImagePropertyOrientation
|
CIImage |
imageByApplyingFilter(java.lang.String filterName)
A convenience method for applying a filter to an image.
|
CIImage |
imageByApplyingFilterWithInputParameters(java.lang.String filterName,
NSDictionary<java.lang.String,?> params)
A convenience method for applying a filter to an image.
|
CIImage |
imageByApplyingGaussianBlurWithSigma(double sigma)
Return a new image by applying a gaussian blur to the receiver.
|
CIImage |
imageByApplyingOrientation(int orientation)
Returns a new image representing the original image with a transform applied to it based on an orientation value.
|
CIImage |
imageByApplyingTransform(CGAffineTransform matrix)
Returns a new image representing the original image with the transform
'matrix' appended to it.
|
CIImage |
imageByApplyingTransformHighQualityDownsample(CGAffineTransform matrix,
boolean highQualityDownsample)
specifying true or false here will override the context's kCIContextHighQualityDownsample setting.
|
CIImage |
imageByClampingToExtent()
Return a new infinite image by replicating the edge pixels of the receiver image.
|
CIImage |
imageByClampingToRect(CGRect rect)
Return a new infinite image by replicating the edge pixels of a rectangle.
|
CIImage |
imageByColorMatchingColorSpaceToWorkingSpace(CGColorSpaceRef colorSpace)
Return a new image by color matching from the colorSpace to the context's working space.
|
CIImage |
imageByColorMatchingWorkingSpaceToColorSpace(CGColorSpaceRef colorSpace)
Return a new image by color matching from the context's working space to the colorSpace.
|
CIImage |
imageByCompositingOverImage(CIImage dest)
Return a new image formed by compositing the receiver image over 'dest'.
|
CIImage |
imageByCroppingToRect(CGRect rect)
Return a new image cropped to a rectangle.
|
CIImage |
imageByInsertingIntermediate()
Returns a new image that inserts a intermediate that is cacheable
according to the CIContext's kCIContextCacheIntermediates option.
|
CIImage |
imageByInsertingIntermediate(boolean cache)
Returns a new image that inserts a intermediate that is cacheable
independent of the CIContext's kCIContextCacheIntermediates option.
|
CIImage |
imageByPremultiplyingAlpha()
Return a new image by multiplying the receiver's RGB values by its alpha.
|
CIImage |
imageBySamplingLinear()
Returns a new image by changing the receiver's sample mode to bilinear interpolation.
|
CIImage |
imageBySamplingNearest()
Returns a new image by changing the receiver's sample mode to nearest neighbor.
|
CIImage |
imageBySettingAlphaOneInExtent(CGRect extent)
Return a new image with alpha set to 1 within the rectangle and 0 outside.
|
CIImage |
imageBySettingProperties(NSDictionary<?,?> properties)
Return a new image by changing the recevier's properties.
|
CIImage |
imageByUnpremultiplyingAlpha()
Return a new image by dividing the receiver's RGB values by its alpha.
|
CGAffineTransform |
imageTransformForCGOrientation(int orientation)
Returns a CGAffineTransform for the CGImagePropertyOrientation value that can be applied to an image.
|
CGAffineTransform |
imageTransformForOrientation(int orientation)
Returns a CGAffineTransform for an orientation value that can be applied to an image.
|
static CIImage |
imageWithBitmapDataBytesPerRowSizeFormatColorSpace(NSData data,
long bytesPerRow,
CGSize size,
int format,
CGColorSpaceRef colorSpace)
Creates a new image whose bitmap data is from 'data'.
|
static CIImage |
imageWithCGImage(CGImageRef image)
Creates a new image from the contents of 'image'.
|
static CIImage |
imageWithCGImageOptions(CGImageRef image,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithCGImageSourceIndexOptions(CGImageSourceRef source,
long index,
NSDictionary<java.lang.String,?> dict)
Creates a new image from the contents of 'source'.
|
static CIImage |
imageWithColor(CIColor color)
Return or initialize a new image with an infinite amount of the color
'color'.
|
static CIImage |
imageWithContentsOfURL(NSURL url) |
static CIImage |
imageWithContentsOfURLOptions(NSURL url,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithCVImageBuffer(CVBufferRef imageBuffer)
Creates a new image whose data is from the contents of a CVImageBuffer.
|
static CIImage |
imageWithCVImageBufferOptions(CVBufferRef imageBuffer,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithCVPixelBuffer(CVBufferRef pixelBuffer)
Creates a new image whose data is from the contents of a CVPixelBufferRef.
|
static CIImage |
imageWithCVPixelBufferOptions(CVBufferRef pixelBuffer,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithData(NSData data) |
static CIImage |
imageWithDataOptions(NSData data,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithDepthData(AVDepthData data) |
static CIImage |
imageWithDepthDataOptions(AVDepthData data,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithImageProviderSize_FormatColorSpaceOptions(java.lang.Object p,
long width,
long height,
int f,
CGColorSpaceRef cs,
NSDictionary<java.lang.String,?> options)
Create a new CIImage populated when rendered with data provided by 'p'.
|
static CIImage |
imageWithIOSurface(IOSurfaceRef surface)
Creates a new image from the contents of an IOSurface.
|
static CIImage |
imageWithIOSurfaceOptions(IOSurfaceRef surface,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithMTLTextureOptions(MTLTexture texture,
NSDictionary<java.lang.String,?> options)
Creates a new image referencing the contents of the Metal texture object.
|
static CIImage |
imageWithPortaitEffectsMatte(AVPortraitEffectsMatte matte) |
static CIImage |
imageWithPortaitEffectsMatteOptions(AVPortraitEffectsMatte matte,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithSemanticSegmentationMatte(AVSemanticSegmentationMatte matte) |
static CIImage |
imageWithSemanticSegmentationMatteOptions(AVSemanticSegmentationMatte matte,
NSDictionary<java.lang.String,?> options) |
static CIImage |
imageWithTextureSizeFlippedColorSpace(int name,
CGSize size,
boolean flipped,
CGColorSpaceRef colorSpace)
Creates a new image referencing the contents of the GL texture object
with identifier 'name'.
|
CIImage |
init() |
CIImage |
initWithBitmapDataBytesPerRowSizeFormatColorSpace(NSData data,
long bytesPerRow,
CGSize size,
int format,
CGColorSpaceRef colorSpace) |
CIImage |
initWithCGImage(CGImageRef image)
Initializers.
|
CIImage |
initWithCGImageOptions(CGImageRef image,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithCGImageSourceIndexOptions(CGImageSourceRef source,
long index,
NSDictionary<java.lang.String,?> dict) |
CIImage |
initWithCoder(NSCoder coder)
NS_DESIGNATED_INITIALIZER
|
CIImage |
initWithColor(CIColor color) |
CIImage |
initWithContentsOfURL(NSURL url) |
CIImage |
initWithContentsOfURLOptions(NSURL url,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithCVImageBuffer(CVBufferRef imageBuffer) |
CIImage |
initWithCVImageBufferOptions(CVBufferRef imageBuffer,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithCVPixelBuffer(CVBufferRef pixelBuffer) |
CIImage |
initWithCVPixelBufferOptions(CVBufferRef pixelBuffer,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithData(NSData data) |
CIImage |
initWithDataOptions(NSData data,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithDepthData(AVDepthData data) |
CIImage |
initWithDepthDataOptions(AVDepthData data,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithImage(UIImage image) |
CIImage |
initWithImageOptions(UIImage image,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithImageProviderSize_FormatColorSpaceOptions(java.lang.Object p,
long width,
long height,
int f,
CGColorSpaceRef cs,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithIOSurface(IOSurfaceRef surface) |
CIImage |
initWithIOSurfaceOptions(IOSurfaceRef surface,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithMTLTextureOptions(MTLTexture texture,
NSDictionary<java.lang.String,?> options)
initWithMTLTexture will return nil if textureType is not MTLTextureType2D.
|
CIImage |
initWithPortaitEffectsMatte(AVPortraitEffectsMatte matte) |
CIImage |
initWithPortaitEffectsMatteOptions(AVPortraitEffectsMatte matte,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithSemanticSegmentationMatte(AVSemanticSegmentationMatte matte) |
CIImage |
initWithSemanticSegmentationMatteOptions(AVSemanticSegmentationMatte matte,
NSDictionary<java.lang.String,?> options) |
CIImage |
initWithTextureSizeFlippedColorSpace(int name,
CGSize size,
boolean flipped,
CGColorSpaceRef colorSpace) |
static NSObject.Function_instanceMethodForSelector_ret |
instanceMethodForSelector(org.moe.natj.objc.SEL aSelector) |
static NSMethodSignature |
instanceMethodSignatureForSelector(org.moe.natj.objc.SEL aSelector) |
static boolean |
instancesRespondToSelector(org.moe.natj.objc.SEL aSelector) |
static boolean |
isSubclassOfClass(org.moe.natj.objc.Class aClass) |
static NSSet<java.lang.String> |
keyPathsForValuesAffectingValueForKey(java.lang.String key) |
static CIImage |
magentaImage() |
static CIImage |
new_objc() |
CVBufferRef |
pixelBuffer()
Returns a CVPixelBufferRef if the CIImage was created with [CIImage imageWithCVPixelBuffer] and no options.
|
AVPortraitEffectsMatte |
portraitEffectsMatte()
Returns a AVPortraitEffectsMatte if the CIImage was created with [CIImage imageWithData] or [CIImage imageWithContentsOfURL] and.
|
NSDictionary<java.lang.String,?> |
properties()
Returns the metadata properties of an image.
|
static CIImage |
redImage() |
CGRect |
regionOfInterestForImageInRect(CIImage image,
CGRect rect)
Returns the rectangle of 'image' that is required to render the
rectangle 'rect' of the receiver.
|
static boolean |
resolveClassMethod(org.moe.natj.objc.SEL sel) |
static boolean |
resolveInstanceMethod(org.moe.natj.objc.SEL sel) |
AVSemanticSegmentationMatte |
semanticSegmentationMatte()
Returns a AVSemanticSegmentationMatte if the CIImage was created with [CIImage imageWithData] or [CIImage imageWithContentsOfURL] and.
|
static void |
setVersion_static(long aVersion) |
static org.moe.natj.objc.Class |
superclass_static() |
static boolean |
supportsSecureCoding() |
NSURL |
url()
Returns the URL of the image when the image was created using the imageWithContentsOfURL APIs.
|
static long |
version_static() |
static CIImage |
whiteImage() |
static CIImage |
yellowImage() |
accessibilityActivate, accessibilityActivationPoint, accessibilityAssistiveTechnologyFocusedIdentifiers, accessibilityAttributedHint, accessibilityAttributedLabel, accessibilityAttributedUserInputLabels, accessibilityAttributedValue, accessibilityContainerType, accessibilityCustomActions, accessibilityCustomRotors, accessibilityDecrement, accessibilityDragSourceDescriptors, accessibilityDropPointDescriptors, accessibilityElementAtIndex, accessibilityElementCount, accessibilityElementDidBecomeFocused, accessibilityElementDidLoseFocus, accessibilityElementIsFocused, accessibilityElements, accessibilityElementsHidden, accessibilityFrame, accessibilityHint, accessibilityIncrement, accessibilityLabel, accessibilityLanguage, accessibilityNavigationStyle, accessibilityPath, accessibilityPerformEscape, accessibilityPerformMagicTap, accessibilityRespondsToUserInteraction, accessibilityScroll, accessibilityTextualContext, accessibilityTraits, accessibilityUserInputLabels, accessibilityValue, accessibilityViewIsModal, addObserverForKeyPathOptionsContext, attemptRecoveryFromErrorOptionIndex, attemptRecoveryFromErrorOptionIndexDelegateDidRecoverSelectorContextInfo, autoContentAccessingProxy, awakeAfterUsingCoder, awakeFromNib, class_objc, classForCoder, classForKeyedArchiver, copy, dealloc, debugDescription, description, dictionaryWithValuesForKeys, didChangeValueForKey, didChangeValueForKeyWithSetMutationUsingObjects, didChangeValuesAtIndexesForKey, doesNotRecognizeSelector, fileManagerShouldProceedAfterError, fileManagerWillProcessPath, finalize_objc, forwardingTargetForSelector, forwardInvocation, hash, indexOfAccessibilityElement, isAccessibilityElement, isEqual, isKindOfClass, isMemberOfClass, isProxy, methodForSelector, methodSignatureForSelector, mutableArrayValueForKey, mutableArrayValueForKeyPath, mutableCopy, mutableOrderedSetValueForKey, mutableOrderedSetValueForKeyPath, mutableSetValueForKey, mutableSetValueForKeyPath, observationInfo, observeValueForKeyPathOfObjectChangeContext, performSelector, performSelectorInBackgroundWithObject, performSelectorOnMainThreadWithObjectWaitUntilDone, performSelectorOnMainThreadWithObjectWaitUntilDoneModes, performSelectorOnThreadWithObjectWaitUntilDone, performSelectorOnThreadWithObjectWaitUntilDoneModes, performSelectorWithObject, performSelectorWithObjectAfterDelay, performSelectorWithObjectAfterDelayInModes, performSelectorWithObjectWithObject, prepareForInterfaceBuilder, provideImageDataBytesPerRowOrigin_Size_UserInfo, removeObserverForKeyPath, removeObserverForKeyPathContext, replacementObjectForCoder, replacementObjectForKeyedArchiver, respondsToSelector, self, setAccessibilityActivationPoint, setAccessibilityAttributedHint, setAccessibilityAttributedLabel, setAccessibilityAttributedUserInputLabels, setAccessibilityAttributedValue, setAccessibilityContainerType, setAccessibilityCustomActions, setAccessibilityCustomRotors, setAccessibilityDragSourceDescriptors, setAccessibilityDropPointDescriptors, setAccessibilityElements, setAccessibilityElementsHidden, setAccessibilityFrame, setAccessibilityHint, setAccessibilityLabel, setAccessibilityLanguage, setAccessibilityNavigationStyle, setAccessibilityPath, setAccessibilityRespondsToUserInteraction, setAccessibilityTextualContext, setAccessibilityTraits, setAccessibilityUserInputLabels, setAccessibilityValue, setAccessibilityViewIsModal, setIsAccessibilityElement, setNilValueForKey, setObservationInfo, setShouldGroupAccessibilityChildren, setValueForKey, setValueForKeyPath, setValueForUndefinedKey, setValuesForKeysWithDictionary, shouldGroupAccessibilityChildren, superclass, validateValueForKeyError, validateValueForKeyPathError, valueForKey, valueForKeyPath, valueForUndefinedKey, willChangeValueForKey, willChangeValueForKeyWithSetMutationUsingObjects, willChangeValuesAtIndexesForKeypublic static boolean accessInstanceVariablesDirectly()
public static CIImage alloc()
public static CIImage allocWithZone(org.moe.natj.general.ptr.VoidPtr zone)
public static boolean automaticallyNotifiesObserversForKey(java.lang.String key)
public static void cancelPreviousPerformRequestsWithTarget(java.lang.Object aTarget)
public static void cancelPreviousPerformRequestsWithTargetSelectorObject(java.lang.Object aTarget,
org.moe.natj.objc.SEL aSelector,
java.lang.Object anArgument)
public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
public static org.moe.natj.objc.Class classForKeyedUnarchiver()
public static java.lang.String debugDescription_static()
public static java.lang.String description_static()
public static CIImage emptyImage()
public static long hash_static()
public static CIImage imageWithBitmapDataBytesPerRowSizeFormatColorSpace(NSData data, long bytesPerRow, CGSize size, int format, CGColorSpaceRef colorSpace)
public static CIImage imageWithCGImage(CGImageRef image)
public static CIImage imageWithCGImageOptions(CGImageRef image, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithCVImageBuffer(CVBufferRef imageBuffer)
public static CIImage imageWithCVImageBufferOptions(CVBufferRef imageBuffer, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithCVPixelBuffer(CVBufferRef pixelBuffer)
public static CIImage imageWithCVPixelBufferOptions(CVBufferRef pixelBuffer, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithColor(CIColor color)
public static CIImage imageWithContentsOfURLOptions(NSURL url, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithDataOptions(NSData data, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithImageProviderSize_FormatColorSpaceOptions(java.lang.Object p, long width, long height, int f, CGColorSpaceRef cs, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithMTLTextureOptions(MTLTexture texture, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithTextureSizeFlippedColorSpace(int name, CGSize size, boolean flipped, CGColorSpaceRef colorSpace)
public static NSObject.Function_instanceMethodForSelector_ret instanceMethodForSelector(org.moe.natj.objc.SEL aSelector)
public static NSMethodSignature instanceMethodSignatureForSelector(org.moe.natj.objc.SEL aSelector)
public static boolean instancesRespondToSelector(org.moe.natj.objc.SEL aSelector)
public static boolean isSubclassOfClass(org.moe.natj.objc.Class aClass)
public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey(java.lang.String key)
public static CIImage new_objc()
public static boolean resolveClassMethod(org.moe.natj.objc.SEL sel)
public static boolean resolveInstanceMethod(org.moe.natj.objc.SEL sel)
public static void setVersion_static(long aVersion)
public static org.moe.natj.objc.Class superclass_static()
public static boolean supportsSecureCoding()
public static long version_static()
public CGImageRef CGImage()
public NSArray<? extends CIFilter> autoAdjustmentFilters()
The options dictionary can contain a CIDetectorImageOrientation key value. The value for this key is an integer NSNumber from 1..8 such as that found in kCGImagePropertyOrientation. If present, the adjustment will be done based on that orientation but any coordinates in the returned filters will still be based on those of the sender image.
public NSArray<? extends CIFilter> autoAdjustmentFiltersWithOptions(NSDictionary<java.lang.String,?> options)
public CGColorSpaceRef colorSpace()
public java.lang.Object copyWithZone(org.moe.natj.general.ptr.VoidPtr zone)
copyWithZone in interface NSCopyingpublic void encodeWithCoder(NSCoder coder)
encodeWithCoder in interface NSCodingpublic CGRect extent()
public CIImage imageByApplyingFilterWithInputParameters(java.lang.String filterName, NSDictionary<java.lang.String,?> params)
public CIImage imageByApplyingGaussianBlurWithSigma(double sigma)
public CIImage imageByApplyingOrientation(int orientation)
public CIImage imageByApplyingTransform(CGAffineTransform matrix)
public CIImage imageByClampingToExtent()
public CIImage imageByClampingToRect(CGRect rect)
public CIImage imageByColorMatchingColorSpaceToWorkingSpace(CGColorSpaceRef colorSpace)
public CIImage imageByColorMatchingWorkingSpaceToColorSpace(CGColorSpaceRef colorSpace)
public CIImage imageByCompositingOverImage(CIImage dest)
public CIImage imageByCroppingToRect(CGRect rect)
public CIImage imageByPremultiplyingAlpha()
public CIImage imageBySettingAlphaOneInExtent(CGRect extent)
public CIImage imageBySettingProperties(NSDictionary<?,?> properties)
public CIImage imageByUnpremultiplyingAlpha()
public CGAffineTransform imageTransformForOrientation(int orientation)
public CIImage initWithBitmapDataBytesPerRowSizeFormatColorSpace(NSData data, long bytesPerRow, CGSize size, int format, CGColorSpaceRef colorSpace)
public CIImage initWithCGImage(CGImageRef image)
public CIImage initWithCGImageOptions(CGImageRef image, NSDictionary<java.lang.String,?> options)
public CIImage initWithCVImageBuffer(CVBufferRef imageBuffer)
public CIImage initWithCVImageBufferOptions(CVBufferRef imageBuffer, NSDictionary<java.lang.String,?> options)
public CIImage initWithCVPixelBuffer(CVBufferRef pixelBuffer)
public CIImage initWithCVPixelBufferOptions(CVBufferRef pixelBuffer, NSDictionary<java.lang.String,?> options)
public CIImage initWithCoder(NSCoder coder)
NSCodinginitWithCoder in interface NSCodingpublic CIImage initWithContentsOfURLOptions(NSURL url, NSDictionary<java.lang.String,?> options)
public CIImage initWithDataOptions(NSData data, NSDictionary<java.lang.String,?> options)
public CIImage initWithImageOptions(UIImage image, NSDictionary<java.lang.String,?> options)
public CIImage initWithImageProviderSize_FormatColorSpaceOptions(java.lang.Object p, long width, long height, int f, CGColorSpaceRef cs, NSDictionary<java.lang.String,?> options)
public CIImage initWithMTLTextureOptions(MTLTexture texture, NSDictionary<java.lang.String,?> options)
public CIImage initWithTextureSizeFlippedColorSpace(int name, CGSize size, boolean flipped, CGColorSpaceRef colorSpace)
public CVBufferRef pixelBuffer()
public NSDictionary<java.lang.String,?> properties()
public CGRect regionOfInterestForImageInRect(CIImage image, CGRect rect)
public boolean _supportsSecureCoding()
NSSecureCoding_supportsSecureCoding in interface NSSecureCodingpublic NSURL url()
public AVDepthData depthData()
public CIImage imageByApplyingCGOrientation(int orientation)
public CIImage imageByApplyingFilter(java.lang.String filterName)
public CIImage imageBySamplingLinear()
public CIImage imageBySamplingNearest()
public CGAffineTransform imageTransformForCGOrientation(int orientation)
public static CIImage imageWithIOSurface(IOSurfaceRef surface)
public static CIImage imageWithIOSurfaceOptions(IOSurfaceRef surface, NSDictionary<java.lang.String,?> options)
public CIImage initWithIOSurface(IOSurfaceRef surface)
public CIImage initWithIOSurfaceOptions(IOSurfaceRef surface, NSDictionary<java.lang.String,?> options)
public static CIImage blackImage()
public static CIImage blueImage()
public static CIImage clearImage()
public static CIImage cyanImage()
public static CIImage grayImage()
public static CIImage greenImage()
public CIImage imageByApplyingTransformHighQualityDownsample(CGAffineTransform matrix, boolean highQualityDownsample)
public CIImage imageByInsertingIntermediate()
public CIImage imageByInsertingIntermediate(boolean cache)
public static CIImage imageWithCGImageSourceIndexOptions(CGImageSourceRef source, long index, NSDictionary<java.lang.String,?> dict)
public static CIImage imageWithDepthData(AVDepthData data)
public static CIImage imageWithDepthDataOptions(AVDepthData data, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithPortaitEffectsMatte(AVPortraitEffectsMatte matte)
public static CIImage imageWithPortaitEffectsMatteOptions(AVPortraitEffectsMatte matte, NSDictionary<java.lang.String,?> options)
public static CIImage imageWithSemanticSegmentationMatte(AVSemanticSegmentationMatte matte)
public static CIImage imageWithSemanticSegmentationMatteOptions(AVSemanticSegmentationMatte matte, NSDictionary<java.lang.String,?> options)
public CIImage initWithCGImageSourceIndexOptions(CGImageSourceRef source, long index, NSDictionary<java.lang.String,?> dict)
public CIImage initWithDepthData(AVDepthData data)
public CIImage initWithDepthDataOptions(AVDepthData data, NSDictionary<java.lang.String,?> options)
public CIImage initWithPortaitEffectsMatte(AVPortraitEffectsMatte matte)
public CIImage initWithPortaitEffectsMatteOptions(AVPortraitEffectsMatte matte, NSDictionary<java.lang.String,?> options)
public CIImage initWithSemanticSegmentationMatte(AVSemanticSegmentationMatte matte)
public CIImage initWithSemanticSegmentationMatteOptions(AVSemanticSegmentationMatte matte, NSDictionary<java.lang.String,?> options)
public static CIImage magentaImage()
public AVPortraitEffectsMatte portraitEffectsMatte()
public static CIImage redImage()
public AVSemanticSegmentationMatte semanticSegmentationMatte()
public static CIImage whiteImage()
public static CIImage yellowImage()