gpt4 book ai didi

iphone - 使用avfoundation捕捉图像,但捕捉速度不能太快

转载 作者:行者123 更新时间:2023-12-03 19:58:36 25 4
gpt4 key购买 nike

我使用avfoundation来捕获图像,但是我不能捕获太快(我将间隔时间设置为0.1s)。它说“空样本缓冲区”。问题是什么?谢谢。

[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];
//use the image
}];

* 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“* +[AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:] - NULL 示例缓冲区。”

最佳答案

文档中说:

This method throws an NSInvalidArgumentException if jpegSampleBuffer is NULL or not in the JPEG format.

因此,要么您检查 imageSampleBuffer 是否为 NULL,要么我所做的,我将整个事情包装在 if 语句检查中:CMSampleBufferIsValid(imageSampleBuffer) 但真的不知道这是否是正确的调用。文档有点稀疏。

关于iphone - 使用avfoundation捕捉图像,但捕捉速度不能太快,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7024282/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com