iPhoneのカメラからフレームをキャプチャし、これらのフレームで処理を行うアプリを作成しようとしています。インターネットで見つかったコードをいくつか試しました。例: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メソッドのハンドラーコードブロックに入ることがないため、フレームから画像を取得することはありません。私は間違った方法で何かをしていますか?あなたの提案をありがとう!