如何设置iPhone视频输出图像大小

时间:2010-10-25 15:05:06

标签: iphone objective-c ios camera

我正在尝试在iPhone上进行一些图像处理。 我正在使用http://developer.apple.com/library/ios/#qa/qa2010/qa1702.html来捕捉相机帧。 我看到我可以使用setVideoSettings设置AVCaptureVideoDataOutput图像格式,但是可以以较低的分辨率获取图像吗? 如果没有,是一种有效的方法来缩小所得图像的尺寸吗?

谢谢, 阿萨夫。

1 个答案:

答案 0 :(得分:3)

这就是我们如何获得较低分辨率的输出,以便在操作图像时获得更高的FPS:

//  sessionPreset governs the quality of the capture. we don't need high-resolution images,
//  so we'll set the session preset to low quality. 
self.captureSession.sessionPreset = AVCaptureSessionPresetLow;

Asaf Pinhassi。