A tag for the CIFilter class, part of the Mac OS X Cocoa framework.

learn more… | top users | synonyms

0
votes
1answer
47 views

Custom CIKernel move pixels

I'm trying to create custom cifilter (like adobe's warp filter). How to move only few pixels (that are in ROI) to some other location in kernel language? Maybe someone could suggest me some info about ...
1
vote
2answers
52 views

How to change minimum or maximum value by CIFilter in Core image?

I'm drawing several grayscale images in iOS. The values of grayscale image have minimum and maximum i.e. for 8 bit values in range [41,244]. I want to change minimum value or maximum value. I want to ...
0
votes
1answer
22 views

CIFilter HueAdjust

How to programmatically change the hue of UIImage? I am using the above page's advice, for Core image filter CIFilter. The only problem I am having is my when I rotate to a yellow hue, it's a dark ...
0
votes
0answers
19 views

CILightenBlendMode to blend two transparent images without darkening

I'm using the CIFilter CILightenBlendMode, here's the doc reference: https://developer.apple.com/library/mac/#documentation/graphicsimaging/reference/CoreImageFilterReference/Reference/reference.html ...
1
vote
0answers
80 views

How to use CIFilter CiColorCube

can someone explain me, how does this filter works, i saw WWDC 2012 and documentation and still don’t understand quite. Where and how to define cube color map. Is it in .h or .m file? I have ...
2
votes
1answer
65 views

Arbitrary blending of semi-transparent PNG, retaining alpha on iOS

I want to be able to overlay a semi-transparent PNG with a single colour using an arbitrary blending and keep the alpha. I'm aware of this solution: How to tint a transparent PNG image in iPhone? ...
1
vote
0answers
61 views

CIAreaHistogram inputScale factor

I'm building an application that uses the CIAreaHistogram Core Image filter. I use an inputCount value (number of buckets) of 10 for testing, and an inputScale value of 1. I get the CIImage for the ...
1
vote
0answers
71 views

CIPixellate image output size varies

I'm doing some tests with the CIPixellate filter and I have it working but the resulting images vary in size. I suppose that makes sense since I am varying the inputscale but it was not what I was ...
2
votes
0answers
190 views

Do iOS Core Image Blend Modes differ from Photoshop Blend Modes?

I am using CIFilter and the CIHueBlendMode in order to blend an image (foreground) and a red layer (background) I am doing the exact same thing in Photoshop CS6 with the Hue Blend Mode (copied the ...
0
votes
0answers
64 views

AVFoundation & Video Effects

I'm trying myself on some video-editing, I got sequencing and mixing video/audio together all working properly, even some basic slow-mo! :) Now I want to integrate video filters, not only to the layer ...
0
votes
0answers
118 views

How to do real time video editing by applying CIFilters in iOS 5 & iOS 6 maintaining 30 FPS [Frames Per Second]?

I am new to real-time video editing in iPhone.My goal is to achieve highest frame rate during video editing while working on GPU. I want to support iOS 5 & above with available CIFilters. Kindly ...
0
votes
1answer
171 views

Formatting data CIColorCube

I am trying to use CIColorCube CIFilter of CoreImage framework, i tried arbitrary 3D Luts to images , i wrapped the 3D luts to NSData before passed as an argument to the CIColorCube CIFilter. but i am ...
0
votes
0answers
50 views

CICompositeSourceOver without multiplying components

How to achieve effect as CISourceOverCompositing gives just without multiplying components? I draw brush stroke with color: CIColor *cicolor = [CIColor colorWithRed:0 green:0 blue:0 alpha:0.4]; ...
1
vote
0answers
84 views

Change working colorspace of CIFilter

I'm working on a MacAppStore friendly implementation of CIColorWheelGenerator. It's a simple CIFilter who generates the color wheel you can see in Apple's color picker. Sadly it's part of private ...
1
vote
1answer
74 views

Making a CoreImage filter than sums all row pixels, similar to CIRowAverage?

I'm currently running code on the CPU that sums columns and rows of an grey scale NSImage (i.e. only 1 samplePerPixel). I thought I would try to move the code to the GPU (if possible). I found a ...
0
votes
0answers
52 views

Compositing UIViews/CALayers with “source multiply”

I've a client with an app that needs to be able to have a UIView on top of another, with the pixels combining in not the normal, alpha-channel-driven way. What we need is to have the pixel values of ...
0
votes
0answers
125 views

customize color selection of CIPixellate filter

The user selects an image, which is pixellated more or less based on a slider input: -(CIImage *)pixelPhoto:(CIImage *)img withAmount:(float)inputScale { // Set up the pixellate filter where the ...
1
vote
1answer
79 views

Applying CIFiler to a masked portion of an image

I'm looking for a way to apply a CIFilter to a portion of an image defined by a mask. Something like this, given an image: And a mask: I apply some variation of CIFilter *filter = [CIFilter ...
0
votes
0answers
97 views

Composite 2 UIImageViews using Core Image, when one ImageView is in a ScrollView

I have a UIScrollView with a UIImageView inside it. The user can pan and zoom the image inside the scrollView. I also have a UIImageView in the main view (above the scrollView), and the user can move ...
0
votes
0answers
150 views

CIFilterGenerator failing with CIColorMap

I am trying to create a CIFilterGenerator for use with a CALayer using the following code: CIFilterGenerator *generator = [[CIFilterGenerator alloc] init]; CIFilter *colorFilter = [CIFilter ...
0
votes
0answers
167 views

Applying a CIFilter to an image produces empty UIImage

I’m trying to apply a CIFilter to an image that I receive from UIImagePickerController. Here is the code I’m using: - (void)imagePickerController:(UIImagePickerController *)picker ...
0
votes
0answers
114 views

CIPerspectiveTransform's behaviour

I'm currently working on CIPerspectiveTransform, and I can't seem to find it's exact behaviour. At least I've got an idea but I'm not pretty sure of it. I'll expose what I found out here. As we can ...
0
votes
1answer
114 views

Getting an alpha channel when using CIFilters [How to clear it]

I have a bit of an issue with applying a sharpening filter on a UIImage. The code works perfectly but the problem that the resulting UIImage has an Alpha channel. This in turn causes some performance ...
4
votes
1answer
68 views

Compressing a PNG for use with CIFilter

I have an iPhone app that overlays an image over a view created by a XIB, using CIFilter CIHardLightBlendMode. The view is 1000x1000 pixels, and I want to maintain that size until the end. This makes ...
26
votes
0answers
498 views

Interpret XMP-Metadata in ALAssetRepresentation

When a user makes some changes (cropping, red-eye removal, ...) to photos in the built-in Photos.app on iOS, the changes are not applied to the fullResolutionImage returned by the corresponding ...
0
votes
1answer
92 views

CoreImage CIDotScreen on iOS

I'm trying to use CIDotScreen in an iOS app. CIDotScreen should be supported under iOS 6, however when I create a filter with: [CIFilter filterWithName:@"CIDotScreen" keysAndValues:kCIInputImageKey, ...
0
votes
1answer
97 views

CIContext returns a nil CGImageRef when using a CIRandomGenerator filter

I'm trying to get the output of the CoreImage CIRandomGenerator filter, with the following code: CIContext *context = [CIContext contextWithOptions:nil]; CIFilter *randomNoise = [CIFilter ...
0
votes
0answers
87 views

How to use output of CIFilter recursively as new input?

I've written an own CIFilter kernel which is doing some image processing on the camera signal. It takes two arguments: Argument one is "inputImage" (the current camera image) argument 2 is ...
0
votes
2answers
320 views

CIImage saturation using CIFilters, is it possible?

I am working with CIImage object, trying to get saturation value. But I cannot find the way to get image saturation, at least using CIFilters available in OS X. Is it possible to get saturation of ...
2
votes
2answers
285 views

UISlider and CIFilter causes app to crash after too much use

I am trying to give the user the option to edit hue and brightness using a couple sliders that use CIFilters to affect the image in a UIImageView. I have it working pretty well, but with one issue: ...
1
vote
1answer
192 views

Core Image Filters to apply Curves to each RGB channel separately

I am trying to apply a tone curve to an image like it does in photoshop. You are able to create a separate curve for each of the RGB channels, but on the Core Image Framework you can pick one tone for ...
0
votes
0answers
185 views

What is the best Core Image filter to produce “early bird” effects? [closed]

What is the best Core Image Filter to produce "early bird" effects in iPhone.
0
votes
1answer
32 views

Why are kCIAttribute(Max|Min) and kCIAttributeSlider(Max|Min) sometimes different values

In CoreImage a CIFilter has both a set of Max/Min values and a set of SliderMax/Min values. The documentation for the Max/Min says "The maximum/minimum value for a filter parameter" and the ...
0
votes
0answers
84 views

CIFilter produces “sometimes” black NSImage. Why?

I'm trying to create an image filter app for OS X using Core Image; but "sometimes" when i try to change CIFilter by using different NSSlider, my NSImageView becomes black!!! Note that i convert ...
0
votes
0answers
93 views

CIGaussianGradient can't use transparent color as inputColor0?

I wanted to use CIGaussianGradient to generate black image with transparent (blured-out) centre. But as I figured out it is impossible or I don't know how to do that. If I set inputColor0 as ...
2
votes
1answer
111 views

CIGaussianGradient failure

I try to generate CIGaussianGradient but I get the fallowing output in console 012-08-03 16:45:10.423 OGL[2882:303] *** Assertion failure in -[NSBitmapImageRep initWithCIImage:], ...
0
votes
2answers
236 views

CIFilter filterWithName:keysAndValues: set keysAndValues from NSDictionary

Hi im trying to do something like this: NSMutableDictionary *param1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"inputIntensity", [NSNumber numberWithFloat:0.8], nil]; [param1 setObject:file ...
0
votes
1answer
158 views

NSView's drawRect doesn't get called after CIFilter is applied under 10.8 only

I have an NSView (lets call it mainview) with a few subviews. One of these subviews has a time based (called via a timer) animation which is done in its drawRect method. Also I have some CIFilter ...
0
votes
2answers
512 views

CITemperatureAndTint for image in iOS

Is there any sample code or example for CITemperatureAndTint? I have read its documentation but i need some example to implement it.
1
vote
1answer
1k views

Rendering a random noise CALayer with Core Image is generating strange artifacts

I am programmatically creating a CALayer subclass which applies a bit of pixel noise to itself. The code works in that it renders noise in the layer, but there is a strange artifact on the image that ...
1
vote
1answer
213 views

Does the IKImageView imageCorrection property work?

IKImageView offers an 'imageCorrection' property, which takes a CIFilter and, presumably, uses it when displaying the image. When I tried using it recently, it didn't work for me. When I set the ...