菜鸟教程小白 发表于 2022-12-13 02:30:19

ios - iOS中的GPUImage二值化


                                            <p><p>我正在尝试使用 GPUImage 技术使用图像二值化。我写了这些代码行,其中“图像”是灰度图像</p>

<pre><code> GPUImagePicture *imageSource = [ initWithImage:image];
GPUImageAdaptiveThresholdFilter *stillImageFilter = [
init];
stillImageFilter.blurRadiusInPixels = 3.0;
;
;
;
UIImage *retImage = ;
</code></pre>

<p>我得到“Nil”作为 retImage。我无法弄清楚我的错误。有人帮帮我吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你需要在 stillImageFilter 上调用 <code>-useNextFrameForImageCapture</code>,而不是 imageSource。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS中的GPUImage二值化,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26335697/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26335697/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS中的GPUImage二值化