I'm trying to make a live preview of taking a photo with a tint effect, using CGContextFillRect with kCGBlendModeMultiply. It is causing memory problems and very slow performance.

This (photo preview without the tint effect) works and runs fast (30 fps):

// Create and configure a capture session and start it running
- (void)setupCaptureSession 
{
    NSError *error = nil;

    // Create the session
    AVCaptureSession *session = [[AVCaptureSession alloc] init];

    // Configure the session to produce lower resolution video frames, if your 
    // processing algorithm can cope. We'll specify medium quality for the
    // chosen device.
    session.sessionPreset = AVCaptureSessionPresetMedium;

    // Find a suitable AVCaptureDevice
    AVCaptureDevice *device = [AVCaptureDevice
                               defaultDeviceWithMediaType:AVMediaTypeVideo];

    // Create a device input with the device and add it to the session.
    AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device 
                                                                        error:&error];
    if (!input) {
        // Handling the error appropriately.
    }
    [session addInput:input];

    // Create a VideoDataOutput and add it to the session
    AVCaptureVideoDataOutput *output = [[[AVCaptureVideoDataOutput alloc] init] autorelease];
    [session addOutput:output];

    // Configure your output.
    dispatch_queue_t queue = dispatch_queue_create("myQueue", NULL);
    [output setSampleBufferDelegate:self queue:queue];
    dispatch_release(queue);

    // Specify the pixel format
    output.videoSettings = 
    [NSDictionary dictionaryWithObject:
     [NSNumber numberWithInt:kCVPixelFormatType_32BGRA] 
                                forKey:(id)kCVPixelBufferPixelFormatTypeKey];


    // If you wish to cap the frame rate to a known value, such as 15 fps, set 
    // minFrameDuration.
    output.minFrameDuration = CMTimeMake(1, 30);

    // Start the session running to start the flow of data
    [session startRunning];

    // Assign session to an ivar.
    //[self setSession:session];
}

// Delegate routine that is called when a sample buffer was written
- (void)captureOutput:(AVCaptureOutput *)captureOutput 
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer 
       fromConnection:(AVCaptureConnection *)connection
{ 
    // Create a UIImage from the sample buffer data
    UIImage *image = [self imageFromSampleBuffer:sampleBuffer];

    [image retain];
    [self performSelectorOnMainThread:@selector(cameraCaptureGotFrame:)
                                    withObject:image waitUntilDone:NO];

}

- (void) cameraCaptureGotFrame:(UIImage*)image
{
    // whatever this function does, e.g.:
    compositeImageView.image = image;

    // decrement ref count
    [image release];
}



// Create a UIImage from sample buffer data
- (UIImage *) imageFromSampleBuffer:(CMSampleBufferRef) sampleBuffer 
{
    // Get a CMSampleBuffer's Core Video image buffer for the media data
    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer); 
    // Lock the base address of the pixel buffer
    CVPixelBufferLockBaseAddress(imageBuffer, 0); 

    // Get the number of bytes per row for the pixel buffer
    void *baseAddress = CVPixelBufferGetBaseAddress(imageBuffer); 

    // Get the number of bytes per row for the pixel buffer
    size_t bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer); 
    // Get the pixel buffer width and height
    size_t width = CVPixelBufferGetWidth(imageBuffer); 
    size_t height = CVPixelBufferGetHeight(imageBuffer); 

    // Create a device-dependent RGB color space
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); 

    // Create a bitmap graphics context with the sample buffer data
    CGContextRef context = CGBitmapContextCreate(baseAddress, width, height, 8, 
                                                 bytesPerRow, colorSpace, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst); 


    //********** add tint


    /*CGContextSetBlendMode (context, kCGBlendModeMultiply);

    CGContextSetFillColorWithColor(context, [[UIColor colorWithHue:tintHue saturation:1.0f brightness:1.0f alpha:tintAlpha] CGColor]);

    CGContextFillRect(context, CGRectMake(0, 0, width, height));


    CGContextSetBlendMode(context, kCGBlendModeNormal);*/



    //********** ***********



    // Create a Quartz image from the pixel data in the bitmap graphics context
    CGImageRef quartzImage = CGBitmapContextCreateImage(context); 
    // Unlock the pixel buffer
    CVPixelBufferUnlockBaseAddress(imageBuffer,0);

    // Free up the context and color space
    CGContextRelease(context); 
    CGColorSpaceRelease(colorSpace);

    // Create an image object from the Quartz image
    UIImage *image = [UIImage imageWithCGImage:quartzImage];

    // Release the Quartz image
    CGImageRelease(quartzImage);

    return (image);
}

But as soon as I uncomment these four lines of Core Graphics code, it runs very slow (5-10fps) and gives memory warnings and quits after less than a minute:

CGContextSetBlendMode (context, kCGBlendModeMultiply);

    CGContextSetFillColorWithColor(context, [[UIColor colorWithHue:tintHue saturation:1.0f brightness:1.0f alpha:tintAlpha] CGColor]);

    CGContextFillRect(context, CGRectMake(0, 0, width, height));


    CGContextSetBlendMode(context, kCGBlendModeNormal);

There are photo apps that do live preview of a lot more than just a simple tint effect. So it should be possible. Is this the wrong way to do it?

Three things I've tried that had no (or no good) effect:

setting output.minFrameDuration slower, to CMTimeMake(1, 15);

setting waitUntilDone:YES

forgoing performSelectorOnMainThread: and updating the ImageView right from captureOutput:. This caused the preview to only update once every few seconds, and still caused memory warnings and a crash.

link|improve this question
Those other photo apps probably use CoreImage filters, which are very optimized and probably hardware-accelerated. You might also try creating a CALayer, filling it with your tint color, and letting the window server worry about composing it with your image layer. You only have to create the tint layer once. – rob mayoff Oct 30 '11 at 1:24
In the CALayer reference (developer.apple.com/library/ios/#DOCUMENTATION/GraphicsImaging/…) both under filters and under compositingFilter -- it says that CoreImage is not available in iOS. If they're using CoreImage, is this information out of date? – vladimir z Oct 30 '11 at 4:47
Supposedly Core Image is in iOS 5, but I haven't checked myself. You should be able to do your tint effect with just a CALayer though. – rob mayoff Oct 30 '11 at 7:44
Core Image is available as of iOS 5, but only partially. You'll have to query Core Image for a list of available filters. – LucasTizma Mar 23 at 20:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.