如何在 iOS 上使用 OpenCV 对 CGImage 进行二值化?

How do I binarize a CGImage using OpenCV on iOS?(如何在 iOS 上使用 OpenCV 对 CGImage 进行二值化?)
本文介绍了如何在 iOS 上使用 OpenCV 对 CGImage 进行二值化?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的 iOS 项目中,我有一个 RGB 格式的 CGImage,我想对其进行二值化(转换为黑白).我想使用 OpenCV 来做到这一点,但我是 OpenCV 的新手.我找到了一本关于 OpenCV 的书,但它不适用于 iPhone.

In my iOS project, I have a CGImage in RGB that I'd like to binarize (convert to black and white). I would like to use OpenCV to do this, but I'm new to OpenCV. I found a book on OpenCV, but it was not for iPhone.

如何在 iOS 上使用 OpenCV 对这样的图像进行二值化?

How can I binarize such an image using OpenCV on iOS?

推荐答案

如果你不想在你的 iOS 项目中设置 OpenCV,我的开源 GPUImage 框架内部有两个阈值过滤器,用于图像的二值化,一个简单阈值和一个基于像素附近局部亮度的自适应阈值.

If you don't want to set up OpenCV in your iOS project, my open source GPUImage framework has two threshold filters within it for binarization of images, a simple threshold and an adaptive one based on local luminance near a pixel.

您可以对图像应用一个简单的阈值,然后使用如下代码提取生成的二值化 UIImage:

You can apply a simple threshold to an image and then extract a resulting binarized UIImage using code like the following:

UIImage *inputImage = [UIImage imageNamed:@"inputimage.png"];    
GPUImageLuminanceThresholdFilter *thresholdFilter = [[GPUImageLuminanceThresholdFilter alloc] init];
thresholdFilter.threshold = 0.5;
UIImage *thresholdFilter = [thresholdFilter imageByFilteringImage:inputImage];

(如果您的应用程序中不使用 ARC,请释放上述过滤器)

(release the above filter if not using ARC in your application)

如果您希望将此图像显示到屏幕上,可以将阈值输出发送到 GPUImageView.如果您愿意,您还可以使用这些过滤器处理实时视频,因为它们完全在 GPU 上运行.

If you wish to display this image to the screen instead, you can send the thresholded output to a GPUImageView. You can also process live video with these filters, if you wish, because they are run entirely on the GPU.

这篇关于如何在 iOS 上使用 OpenCV 对 CGImage 进行二值化?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)