Tagged Questions
Core Image is a set of components for near real-time, pixel-accurate image and video processing for cocoa. It's available from Mac OS X v10.4.
8
votes
2answers
4k views
Are the Core Image filters in iOS 5.0 fast enough for realtime video processing?
Now that Apple has ported the Core Image framework over to iOS 5.0, I'm wondering: is Core Image is fast enough to apply live filters and effects to camera video?
Also, what would be a good starting ...
6
votes
2answers
387 views
Split tone effect using core image filters?
I understand the principles behind the split tone effect, and would love to use either a color map or tone curves for individual rgb channels. Unfortunately that's not an option for iOS at the moment, ...
5
votes
0answers
459 views
CAAnimationGroup with different interface elements
I want to crossfade two NSViews and resize their NSWindow. I know how to do them separately but so far not how to do it simultaneously. I think I need a CAAnimationGroup for it. But because I'm ...
5
votes
2answers
2k views
Tinting a grayscale NSImage (or CIImage)
I have a grayscale image which I want to use for drawing Cocoa controls. The image has various levels of gray. Where it is darkest, I want it to draw a specified tint color darkest. I want it to be ...
5
votes
2answers
4k views
How can I use CIFilter in iPhone OS?
Apple says that CIFilter is available in iPhone OS. However, on my mac I couldn't find an CoreImage framework to link against.
filter An optional Core Image filter
object that provides the ...
5
votes
3answers
434 views
CoreImage for Win32
For those not familiar with Core Image, here's a good description of it:
http://developer.apple.com/macosx/coreimage.html
Is there something equivalent to Apple's CoreImage/CoreVideo for Windows? I ...
4
votes
2answers
1k views
Having trouble creating UIImage from CIImage in iOS5
I'm using the AVFoundation framework. In my sample buffer delegate I have the following code:
-(void)captureOutput:(AVCaptureOutput *)captureOutput ...
4
votes
3answers
3k views
CIFilter available in the iPhone SDK?
This might be a dumb question, but I want to know for sure before I start implementing my own filters (probably using opengl ES) but are the CIFilters available on the iphone? Anything similar?
...
3
votes
1answer
124 views
Distort image to make raindrop on screen effect
I want to make an image appear distorted as if raindrops are on the screen.
Any idea how I could do this using OpenGL or CoreImage?
I am able get an image with the depth of the raindrop shapes if ...
3
votes
1answer
140 views
“Performing a costly unpadding operation!” — what is it, and how to fix it?
The debug console for my Core Filters test application is showing this message:
CGImageRef 0x7a0e890 has row byte padding. Performing a costly unpadding operation!
I couldn't find a hit for that ...
3
votes
0answers
123 views
HDR with AVFoundation
I'm like to get both a real-time and post-processed HDR effect with AVFoundation and/or CoreImage. I'm assuming this is relatively easy with CoreImage once a full-frame still image is captured, but ...
3
votes
1answer
314 views
How do you set the inputTransform for CIAffineTransform in iOS 5
I've been looking around for a while for an answer to this, but haven't found anything. I'm trying to use the CIAffineTransform thats apart of iOS 5 Beta, and have come across an issue. The ...
3
votes
1answer
172 views
Is there a way to force CoreImage to use the GPU?
We are having the following problem: a series of Core Image filters runs constantly in our program. When evaluating on my Macbook Pro, Core Image decides to schedule all graphics computation on the ...
2
votes
2answers
190 views
Input parameters of CITemperatureAndTint (CIFilter)
I fail to understand the input parameters of the CIFilter named CITemperatureAndTint. The documentation says it has two input parameters which are both a 2D CIVector.
I played with this filter a lot ...
2
votes
1answer
225 views
CoreImage, iOS5 and speed, why is CoreImage so slow?
I'm finally sitting down to convert some of our graphics libraries to use CoreImage to render images (for things like blending two images) and I've got it working but its slow (iOS5.01 iPhone 4S). I ...
2
votes
2answers
85 views
Scaling of image (scriptable image processing system)
I want to scale images to 400x400 (I am creating thumbnails). I am using the Scriptable Image Processing System (SIPS) in a Cocoa application, but the problem is poor efficiency. SIPS takes 70-90% CPU ...
2
votes
2answers
261 views
Core Image autoAdjustmentFilters are not detecting red eye
I'm using the new Core Image APIs in iOS 5 that do auto enhancements. However, the array returned from autoAdjustmentFilters or autoAdjustmentFiltersWithOptions never removes red eye, it only returns ...
2
votes
0answers
102 views
constants for CIFilter names
are there constant strings for names of build in filters(CIColorControls, CIBloom, etc.) in Mac OS X?
There are constant strings like kCIInputEVKey, which you can use to avoid string literals like ...
2
votes
1answer
165 views
Seam Carving – Accessing pixel data in cocoa
I want to implement the seam carving algorithm by Avidan/Shamir. After the energy computing stage which can be implemented using a core image filter, I need to compute the seams with the lowest energy ...
2
votes
0answers
259 views
Custom Core Image Filter site?
Does any one know of any free custom Core Image filter on the net?
I was playing with Core Image today and really impressed with the vast possibility with Core Image.
Only one I did find was from ...
2
votes
1answer
690 views
Horizontal Flip of a frame in Objective-C
I am trying to create a filter for my program (which streams a webcam) which makes the frame flip horizontally, making the webcam act like a mirror.
However, while it compiles and runs, the filter ...
2
votes
2answers
387 views
How to process CIFilter using CPU instead of GPU?
Does anyone know how to tell core image to process a CIImage through a CIFilter using the CPU instead of the GPU? I need to process some very large images and I get strange results using the GPU. I ...
2
votes
0answers
155 views
use core-image in 3d
i have a working Core Video setup (a frame captured from a USB camera via QTKit) and the current frame is rendered as a texture on an arbitary plane in 3d space in a subclassed NSOpenGLView. so far so ...
1
vote
1answer
70 views
Checking CIFilter is available in current iOS
I would like to use some of the functionality of iOS5 but still build for iOS4 compaitibly but i'm having an issue. Typically i would use the respondsToSelector: but i'm not exactly sure whether this ...
1
vote
2answers
251 views
Does iOS 5 support blur CoreImage fiters?
According to the documentation it should support blurring, note the "Available in iOS 5.0 and later":
CIFilter Class Reference
But according to the device, it doesn't:
[CIFilter ...
1
vote
1answer
145 views
CIImage created from CVPixelBufferRef draws rotated and shrunk in GLKView
I'm trying to grab video with an AVCaptureSession, process the video in the callback (eventually), then render the results into my GLKView. The code below works but the image in my GLKView is rotated ...
1
vote
1answer
233 views
iOS - Cannot process image using CIFilter
I am trying to process image using Core Image. I have created UIImage category to do it.
I have added QuartzCore and CoreImage frameworks to project, imported CoreImage/CoreImage.h and used this ...
1
vote
1answer
55 views
convert ciimage to writable format
I need to convert CIImage to a format which could be written to disk.
Currently I am using the following code to convert it to JPG format .
NSBitmapImageRep* rep = [[[NSBitmapImageRep alloc] ...
1
vote
0answers
32 views
How to retrieve real pixel's HDR colors associated with CIImage
Can someone advice me
how to retrieve real pixel's high dynamic range(cn be > 1.f) colors from CIImage ?
This method returns data scaled between[0...1]
NSBitmapImageRep * rep = [[[NSBitmapImageRep ...
1
vote
0answers
60 views
CIImage with float RGB data(no alpha)
I'm struggling to display properly float RGB HDR data, i use this code ti create CIImage, but displayed image looks gradated
Here is my code, I really appreciate any suggestions
NSBitmapImageRep ...
1
vote
1answer
58 views
What is CIVector's CIAttributeTypeRectangle?
I am using Apple's Core Image Filter reference. It references:
"A CIVector class whose attribute type is CIAttributeTypeRectangle and whose display name is Rectangle."
I can't find anything anywhere ...
1
vote
1answer
94 views
Which CIFilter is used to mask one image on another..?
How do I apply some filters on source image that overlay a small image on it?
Which CIFilter can be used to overlay image on another?
1
vote
0answers
87 views
Applying CIFilter destroys data from .BMP File
I seem to be tying myself up in knots trying to read into all of the different ways you can represent images in a Cocoa app for OSX.
My app reads in an image, applies CIFilters to it and then saves ...
1
vote
2answers
508 views
trouble loading a CiFilter
This question is probably relevant to other first time CIFilter writers, also.
I need advice on updating a video player QTKit application for Mac OS X (based on QTKitPlayer) to use CIFilters. I've ...
1
vote
2answers
239 views
iPhone App Green Screen Replacement
Q: I'm looking to use the iPhone camera to take a photo and then replace the green screen in that photo with another photo.
What's the best way to dive into this? I couldn't find many resources ...
1
vote
1answer
283 views
Add Noise CIFilter
Is there any CIFilters that have a similar effect to the Photoshop "add noise" filter?
1
vote
1answer
597 views
Objective-C libraries wrapping Core Text / Core Image?
Drawing large scrollable content with CATiledLayer works great in my application. What does not work so great is drawing images and multiline text with the Core Text and Core Image APIs in C.
I have ...
1
vote
1answer
391 views
CATransition with CIFilter doesn't work first time,works second time
I want to add CATransition animation for NSView. I have the following code:
[contentView setWantsLayer:YES];
NSRect rect = [contentView bounds];
NSData *shadingBitmapData = [NSData ...
1
vote
3answers
663 views
Converting NSImage to CIImage without degraded quality
I am trying to convert an NSImage to a CIImage. When I do this, there seems to be a huge loss in image quality. I think it is because of the "TIFFRepresentation". Does anyone have a better method? ...
1
vote
0answers
275 views
Invalid context when rendering with CIContext
I have a NSView that renders some CoreImage stuff in drawRect: method. Everything works fine while I'm rendering on hw-accelerated context, but if I switch to software mode, I have error messages in ...
1
vote
3answers
308 views
Strange artifacts after CILanczosScaleTransform
I'm trying to do image scaling using Core Image, using Lanczos Scale Transform filter.
It is fine when I'm doing scaleup. But on scaledown and saving to JPEG I found a class of images which produces ...
1
vote
1answer
347 views
CoreImage patches problems in 10.6
In 10.6 with some systems CoreImage CIPerspectiveTransform (And other api's too) results in colored patches in output image. (It seems like hardware related issue And it occurs only with images with ...
1
vote
1answer
561 views
vs [CIContext drawImage:…]
What is the difference between the last two lines?
CIImage *outputImage = [compositingFilter valueForKey:@"outputImage"];
[[[NSGraphicsContext currentContext] CIContext] drawImage:outputImage ...
1
vote
1answer
277 views
Getting a CGImageRef from IKImageBrowserView
I feed the image browser view with image filenames and it manages loading them.
Is there a way to retrieve the CGImageRef of those images from the browser after it loads them? I'd like to do some ...
0
votes
0answers
14 views
Saved video filtering on iOS
How can I make the process that filtering saved video in photo library in iOS?
I got URLs of videos in the library using AssetsLibrary framework,
then, made a preview for the video.
Next step, I ...
0
votes
0answers
9 views
How to convert an OpenGL ES texture into a CIImage
I know how to do it the other way around. But how can I create a CIImage from a texture, without having to copy into CPU memory? [CIImage imageWithData]? CVOpenGLESTextureCache?
0
votes
2answers
21 views
CISourceOverCompositing produce different results on device and in simulator
I'm trying to use the CISourceOverCompositing filter but I'm hitting some wall.
This is the relevant code. mask is a UIImage and images is an array of UIImage
ci_mask = [[CIImage alloc] ...
0
votes
0answers
51 views
some issue when i try to use two CIFilter
i want to have a picture black&white the most clear as possible, for an app iPad et iPhone.
i did many thing for that :
1 - i take my picture with iPad's or iPhone's camera.
2 - i apply my ...
0
votes
2answers
63 views
How to create simple custom filter for iOS using Core Image Framework?
I want to use in my app an custom filter. Now I know that I need to use Core Image framework, but i not sure that is right way.
Core Image framework uses for Mac OS and in iOS 5.0 - I'm not sure that ...
0
votes
0answers
28 views
CITemperatureAndTint and CIToneCurve do not WORK
my iOS device doesn't do any process with CITemperatureAndTint and CIToneCurve
but, in case of CISepiaTone is doing right !!
outputImage = [CIFilter filterWithName:@"CIToneCurve" ...