我尝试构建一个应用程序,该应用程序从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方法的处理程序代码块,所以我永远不会从帧中获取图像。 我是以错误的方式做某事吗? 谢谢你的建议!
答案 0 :(得分:8)
我发现自动参考计数模式下AVCaptureSession
无法正确保留指向AVCaptureStillImageOutput
的指针。
这意味着您有两种选择:
自己保留指向AVCaptureSession
的指针(例如,将其指定给控制器中的强属性)。
答案 1 :(得分:2)