7

我尝试构建一个应用程序,它从 iPhone 相机中捕获帧并对这些帧进行一些处理。我尝试了一些在 Internet 上找到的代码,例如这里:如何在 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 方法的处理程序代码块,因此我永远不会从帧中获取图像。我是否以错误的方式做某事?感谢您的建议!

4

2 回答 2

8

我发现在自动引用计数模式下,指向的指针AVCaptureSession没有正确保留。AVCaptureStillImageOutput

这意味着您有两个选择:

  • 禁用自动引用计数,或

  • 保留指向您AVCaptureSession自己的指针(例如,通过将其分配给控制器中的强属性)。

于 2014-02-11T13:28:38.953 回答
2

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

此外,您可能想阅读有关内容的信息,他解释说在同一位置拥有会话代码可能会导致问题。

于 2014-02-14T12:58:10.273 回答