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 and partially available in iOS v5.0
0
votes
0answers
16 views
How to use compositing filters with CALayer?
I want to draw a layer using a multiply filter, and got this code from other similar questions:
CALayer *layer = [[CALayer alloc] init];
layer.frame = CGRectMake(50, 50, 200, 80);
...
5
votes
0answers
213 views
+50
drawn area in UIImage not recognized correctly
I am having a strange problem in my project. What I want to do is that, a user will paint or draw using swipe over a image as overlay and I just need to crop the area from the image that is below the ...
0
votes
1answer
15 views
CIFilter determine inputKey parameter type at runtime
We get the input keys for a CIFilter by calling [filter inputKeys] which returns an array of keys. Is there a recommended way of determining, at runtime, the input parameter type for a specific key?
0
votes
1answer
24 views
Maintaining array order with multiple faces using CIDetector Face Detection - iOS
I want to maintain the order of the NSArray I get back from CIDetector so I can tween the frames I draw in the camera view using an animation block. The problem is the order of faces is often ...
3
votes
0answers
57 views
Convert CATransform3D into CIVector's for CIPerspectiveTransform, replace UIGetScreenImage
Is it possible to convert a CATransform3D into a set of CIVectors in order to transform a UIImage with a CATransform3D?
I believe that is now finally possible to replace UIGetScreenImage()'s ability ...
-1
votes
0answers
31 views
Detect wall (surface) color and change color via color picker [closed]
Is there is anyway to detect wall or surface color via live video stream, and change the wall color via color picker. I referred GPUImage. But i can't understand and use my app.
1
vote
0answers
32 views
track the movement of eyeballs of the user in iphone
I am developing an application where I need to track the movement of eyeballs of the user i.e. whether the user is looking at the top or bottom of an iPhone. I have used FaceDetection in my earlier ...
0
votes
0answers
22 views
cgImage from AVCaptureSession, cutting off eye
I'm getting a CGImage from the AVCaptureSession-buffer and i want to cut out for example the left eye. I tried out a few things but i'm getting really confused with the coordinates.
I get the image ...
0
votes
1answer
39 views
CIImage filter is stretching my image vertically
I have an image which I'm using in a custom UITableViewCell. The image is a black triangle on a transparent background and I'm using a CIColorInvert filter to make it a white triangle on a transparent ...
1
vote
1answer
83 views
Place Image on larger canvas size using GPU (possibly CIFilters) without using Image Context
Let's say I have an Image that's 100x100. I want to place the image onto a larger canvas size that's 500x500.
My current approach is to use UIGraphics to create a Context, then draw the image onto ...
1
vote
1answer
89 views
iOS White point/white balance adjustment examples/suggestions
I am trying to change the white point/white balance programmatically. This is what I want to accomplish:
- Choose a (random) pixel from the image
- Get color of that pixel
- Transform the image so ...
0
votes
1answer
32 views
CIFilterGenerator filename extension
Is there an expected UTI or filename extension for generated Core Image filters exported using CIFilterGenerator's writeToURL:atomically: method?
1
vote
1answer
57 views
Why is this array always empty? [closed]
I'm trying to figure out how do I get an image from the user's camera roll and run some Core Image operations on it (detect faces). I'm able to successfully load the image into a uiimageview, but for ...
-1
votes
2answers
114 views
setting UIImageView content mode after applying a CIFIlter
Thanks for looking.
Here's my code
CIImage *result = _vignette.outputImage;
self.mainImageView.image = nil;
//self.mainImageView.contentMode = UIViewContentModeScaleAspectFit;
...
0
votes
2answers
103 views
Formatting CIColorCube data
Recently, I've been trying to set up a CIColorCube on a CIImage to create a custom effect. Here's what I have now:
uint8_t color_cube_data[8*4] = {
0, 0, 0, 1,
255, 0, 0, 1,
0, 255, 0, 1,
...
2
votes
3answers
91 views
How to place a image over eye and mouth using CIFeatures
I found this link to place the image over the face points. Like the same way I need to detect the eyes and place an image over there?
To be simple I need to place an image over the human eye. How can ...
1
vote
0answers
82 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 ...
1
vote
2answers
53 views
Will this flip my CIImage vertically?
I'm very frustrated. Why won't this flip my CIImage vertically?
recognizedImage = [recognizedImage imageByApplyingTransform:CGAffineTransformTranslate(CGAffineTransformMakeScale(1, -1), 0, ...
0
votes
1answer
60 views
Make an UIImage from a CMSampleBuffer
This is not the same as the countless questions about converting a CMSampleBuffer to a UIImage. I'm simply wondering why I can't convert it like this:
CVPixelBufferRef pixelBuffer = ...
2
votes
2answers
129 views
How to use a CIFilter on the layerClass instance of an UIView?
My UIView is using an instance of TBPaperLayer for its layer.
+(Class)layerClass {
return [TBPaperLayer class];
}
I would like to create a CIFilter to modify the appearance of this layer - ...
0
votes
3answers
153 views
Convert RGB image to 1 channel image (black/white)
How can I convert RGB image to 1 channel image (black/white) using ios5?
Input image is usually a photo of a book page.
Goal is to reduce the size of a photocopy by converting it to the 1 channel ...
0
votes
0answers
93 views
can I find matching percentage between two face using open cv?
I'm working on an iOS application that requires matching percentage between two faces. I found some examples of face recognition in opencv but I'm unable to find the percentage calculation.
1
vote
0answers
65 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 ...
0
votes
0answers
66 views
Extract BLACK channel using CIFilter to convert RGB to CMYK colorspace
I'm working on a proof of concept iOS App. The App should be able to read text which print on top of a photo. My idea is to convert the inputImage to CMYK then extract just the black channel ...
0
votes
1answer
53 views
How to auto draw an UIImage with frame and color?
I try something to create an UIImage with a frame and color but don't know what the correct way.
UIImage *aImage = [UIImage imageWithCIImage:[CIImage imageWithColor:[CIColor ...
1
vote
0answers
74 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 ...
0
votes
0answers
24 views
How does the extent of a CIImage affect memory usage?
I'm caching a set of CIImages, some of which may need to be cropped. From what I've read, a CIImage is just a recipe for an image, so I would expect the memory usage of an image and another image ...
0
votes
0answers
15 views
CoreImage Kernel Routine
I am new to writing kernel routines and using Quartz composer at all so please pardon my naivety.
I am trying to unwrap an image that has been taken as a circular fisheye. I would like to make it an ...
0
votes
1answer
63 views
UIImage from CgImageRef while adding sticker
UIImage *sticky = [UIImage imageNamed:@"Radio.png"];
[_imgViewSticky setImage:sticky];
CIImage *outputImage = [self.originalImage CIImage];
CIContext *context = [CIContext contextWithOptions:nil];
...
0
votes
2answers
134 views
CVPixelBuffer to CIImage always returning nil
I am trying to convert a pixelBuffer extracted from AVPlayerItemVideoOutput to CIImage but always getting nil.
The Code
if([videoOutput_ ...
2
votes
0answers
193 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 ...
1
vote
1answer
108 views
Speed up UIImage creation from SpriteSheet
I'm not really sure I got the title exactly right, but I'm not sure where my problem is exactly.
I need to load an array of UIImages from an spritesheet, which I'll then use as animations in a ...
0
votes
0answers
48 views
CIImage with CVPixelBufferRef
I'm trying to create an CIImage from my CVPixelBuffer, which seems to be alright because the log in the code shows the right size of the data. However my original image keeps being emtpy...
...
0
votes
0answers
156 views
Real Time Core Image Filtering in iOS5
In its documentation, Apple says the following about real time filtering with CoreImage:
If your app supports real-time image processing you should create a CIContext object from an EAGL context ...
0
votes
0answers
123 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 ...
4
votes
0answers
49 views
Depth / Perspective with CoreImage?
I would like to create an effect like the image below using one single CALayer - not by splitting the image, performing perspective transformation on both halves and then placing next to each other.
...
1
vote
2answers
87 views
How to fill particular block in UIImageView by touching anywhere in the block area?
I have a UIImageView as displaying below.Every blocks in the Image are of different sizes.And not defined any bound area of Image.We have to fill particular block by touching anywhere in the block ...
0
votes
0answers
34 views
Removing background from a CGPDFRef page
I 'm trying to copy a page from a CGPDFPageRef into a new CGPDFDocumentRef, but I want to remove all white pixels to make them transparent instead in the new PDF.
The basics are simple but I can't ...
2
votes
1answer
269 views
Cropping Using OpenGL ES 2.0 iOS (vs. using Core Image)
I'm having difficulties finding any documentation about cropping images using OpenGL ES on the iPhone or iPad.
Specifically, I am capturing video frames at a mildly rapid pace (20 FPS), and need ...
0
votes
0answers
37 views
CoreImage perspective filter
I am trying to use CoreImage perspective filters but am having a hard time understanding the parameters.
I have done a dump of the filters and got the data below.
What are these default values? What ...
0
votes
0answers
74 views
UIImage from CIImage - Data length is zero?
I'm using an AVCaptureVideoDataOutput along with its delegate method to manipulate video frames. In the delegate method, I am using the sampleBuffer to create a CIImage, and from here I crop the ...
0
votes
1answer
180 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
105 views
Trouble generating a mask image; CISourceOverCompositing not working as expected
I'm basically trying to get the "Anonymous Faces Filter Recipe" example to work in the iOS simulator.
There are no errors or warnings, but it appears as though "CISourceOverCompositing" filter is not ...
0
votes
1answer
134 views
Cropping out a face using CoreImage
I need to crop out a face/multiple faces from a given image and use the cropped face image for other use. I am using CIDetectorTypeFace from CoreImage. The problem is the new UIImage that contains ...
0
votes
1answer
82 views
Why am I seeing an NSUnknownKeyException when setting up a CIAdditionCompositing filter?
I'm trying to set up a CIAdditionCompositing filter using the following code:
CIImage *imageOne = [CIImage imageWithCGImage:[UIImage imageNamed:@"picOne"].CGImage];
CIImage *imageTwo = [CIImage ...
0
votes
1answer
43 views
Real-time filer applied on an UIView?
I am trying to add a filter view on an UIView instance called srcView. What I am doing is like below:
//Generate the screenshot of srcView
UIGraphicsBeginImageContext(srcView.bounds.size);
...
0
votes
1answer
107 views
how to implement tilt shift blur(like circle selective blur in instagram) in ios using coreimage framework
I know that, this can be done using GPUImageFramework. But I want it done using CoreImageFramework. Any tutorial?
2
votes
1answer
235 views
How to calculate an image has noise and Geometric distortion or not?
I need to make an application in iphone which needs to calculate noise, geometric deformation other distortions in an image. How to do this? I have done some image processing stuff with opencv + ...
0
votes
0answers
37 views
How to Remove a CIFilter
I know when using a CIFilter, if you're using a CIFilter like CISepiaTone, you can essentially "remove" it by resetting it's value back to its initial value. However, for a CIFilter like ...
0
votes
1answer
116 views
AsJPEG().Save not working after converting CIImage to UIImage
I'm using CIImage's ImageByCroppingToRect function to crop an image that's originally a UIImage. The crop works. When I do a "originalImage.AsJPEG().Save" that works as well. I've tested and ...






