为什么AVCaptureStillImageOutput :: captureStillImageAsynchronouslyFromConnection:从未调用completionHandler?

时间:2013-02-04 15:58:30

标签: iphone ios avfoundation capture

我尝试构建一个应用程序,该应用程序从iPhone相机捕获帧并使用这些帧进行一些处理。我尝试了在互联网上找到的一些代码,例如在这里:How to capture image without displaying preview in iOS

我最后得到了以下代码:

-(IBAction)captureNow{
    AVCaptureConnection *videoConnection = nil;
    for (AVCaptureConnection *connection in stillImageOutput.connections)
    {
        for (AVCaptureInputPort *port in [connection inputPorts])
        {
            if ([[port mediaType] isEqual:AVMediaTypeVideo] )
            {
                videoConnection = connection;
                break;
            }
        }
        if (videoConnection) { break; }
    }

    //  NSLog(@"about to request a capture from: %@", stillImageOutput);
    [stillImageOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler: ^(CMSampleBufferRef imageSampleBuffer, NSError *error)
     {
         CFDictionaryRef exifAttachments = CMGetAttachment( imageSampleBuffer, kCGImagePropertyExifDictionary, NULL);
         if (exifAttachments)
         {
             // Do something with the attachments.
             NSLog(@"attachements: %@", exifAttachments);
         }
         else
             NSLog(@"no attachments");

         NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
         UIImage *image = [[UIImage alloc] initWithData:imageData];

         //  do the processing with the image       
         }

然而,应用程序永远不会进入captureStillImageAsynchronouslyFromConnection方法的处理程序代码块,所以我永远不会从帧中获取图像。 我是以错误的方式做某事吗? 谢谢你的建议!

2 个答案:

答案 0 :(得分:8)

我发现自动参考计数模式下AVCaptureSession无法正确保留指向AVCaptureStillImageOutput的指针。

这意味着您有两种选择:

答案 1 :(得分:2)

您可能需要检查NSError *错误参数。它为您提供有关成功拍摄的照片的信息。 AVFoundation错误代码为here。我希望这有帮助。

另外,您可能希望阅读有关this的内容,他解释说在同一个地方有会话代码可能会导致问题。