降低captureOutput中的分辨率:didOutputSampleBuffer:fromConnection:

时间:2013-07-17 18:26:14

标签: macos avfoundation webcam avcapturesession

我在访问网络摄像头视频时尝试使用较小的分辨率,我需要在预览时进行快速编辑。目前,当从样本缓冲区输出图像时,分辨率为1600x1200,这对我想用它做的太高了

在设置会话时,我使用它接受的这个,但不管这样做似乎都没有进行更改

_session = [[AVCaptureSession alloc] init];
if ([_session canSetSessionPreset:AVCaptureSessionPreset320x240])
{
    [_session setSessionPreset:AVCaptureSessionPreset320x240];
}

另外一件事情我还需要网络摄像头才能使用captureStillImageAsynchronouslyFromConnection:拍摄全尺寸图像,目前还不错

0 个答案:

没有答案