菜鸟教程小白 发表于 2022-12-13 05:55:21

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


                                            <p><p>我正在尝试在 iPhone 上进行一些图像处理。
我正在使用 <a href="http://developer.apple.com/library/ios/#qa/qa2010/qa1702.html" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#qa/qa2010/qa1702.html</a>捕捉相机帧。
我看到我可以使用 setVideoSettings 设置 AVCaptureVideoDataOutput 图像格式,但是是否可以获得较低分辨率的图像?
如果不是,是缩小结果图像的有效方法吗?</p>

<p>谢谢,
阿萨夫。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这就是我们如何获得较低分辨率的输出,从而在处理图像时获得更高的 FPS:</p>

<pre><code>//sessionPreset governs the quality of the capture. we don&#39;t need high-resolution images,
//so we&#39;ll set the session preset to low quality.
self.captureSession.sessionPreset = AVCaptureSessionPresetLow;
</code></pre>

<p>阿萨夫·平哈西。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何设置 iPhone 视频输出图像大小,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4015897/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4015897/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何设置 iPhone 视频输出图像大小