Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 UIImage 中获取亮度级别。实际上,我正在尝试获取亮度级别,然后将其设置为其他级别(使用 GPUImage 框架),以便我可以将该图像传递给 tessaract OCR SDK。
要修改图像的亮度,您正在寻找的解决方案是在原始图像上应用过滤器。这可以通过使用 CoreImage 框架中提供的过滤器类来实现,更具体地说是 CIFilter。快速浏览一下文档,它非常简单。如果您不使用 CoreImage,网上有几个示例已经编写了过滤器,但是,我认为 CIFilter 类应该足够了。