gpt4 book ai didi

iphone - AVCaptureVideoDataOutput 和设置 kCVPixelBufferWidthKey & kCVPixelBufferHeightKey

转载 作者:可可西里 更新时间:2023-11-01 03:56:23 62 4
gpt4 key购买 nike

我正在尝试通过设置 kCVPixelBufferWidthKeykCVPixelBufferHeightKeyAVCaptureVideoDataOutput 捕获特定大小的帧。
问题是缓冲区的宽度和高度永远不会改变,它们总是返回 852x640

这是我的代码:

// Add the video frame output   
self.videoOutput = [[AVCaptureVideoDataOutput alloc] init];
[videoOutput setAlwaysDiscardsLateVideoFrames:YES];
// Use RGB frames instead of YUV to ease color processing
[videoOutput setVideoSettings:[NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithFloat:320.0], (id)kCVPixelBufferWidthKey,
[NSNumber numberWithFloat:320.0], (id)kCVPixelBufferHeightKey,
[NSNumber numberWithInt:kCVPixelFormatType_32BGRA],(id)kCVPixelBufferPixelFormatTypeKey,
nil]];
[videoOutput setSampleBufferDelegate:self queue:dispatch_get_main_queue()];

编辑:来自 iOS AVCaptureOutput.h:目前,唯一支持的 key 是 kCVPixelBufferPixelFormatTypeKey。

有人知道设置输出缓冲区宽度/高度的工作方法吗?

最佳答案

来自 iOS AVCaptureOutput.h:目前,唯一支持的 key 是 kCVPixelBufferPixelFormatTypeKey。

这就是总结。

关于iphone - AVCaptureVideoDataOutput 和设置 kCVPixelBufferWidthKey & kCVPixelBufferHeightKey,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7967937/

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