如何使用 Core Image 滤镜来调整对比度或清晰度?

发布于 2024-12-10 02:19:14 字数 73 浏览 0 评论 0原文

如何使用 Core Image 框架调整对比度或清晰度?应使用哪些过滤器以及为什么?

有没有例子说明如何做到这一点?

How do you adjust contrast or sharpness using the Core Image framework? Which filters should be used and why?

Are there any examples which show how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑕疵 2024-12-17 02:19:15

对比度很容易:

CIFilter * controlsFilter = [CIFilter filterWithName:@"CIColorControls"];
[controlsFilter setValue:myImage forKey:kCIInputImageKey];
[controlsFilter setValue:@(1.5) forKey:@"inputContrast"];//and so on
displayImage = controlsFilter.outputImage; //and do a conversion from CIImage

但是,对于清晰度,你就不走运了,因为 iOS 5.0 的滤镜中不包含这一点。

Contrast is easy:

CIFilter * controlsFilter = [CIFilter filterWithName:@"CIColorControls"];
[controlsFilter setValue:myImage forKey:kCIInputImageKey];
[controlsFilter setValue:@(1.5) forKey:@"inputContrast"];//and so on
displayImage = controlsFilter.outputImage; //and do a conversion from CIImage

However, for sharpness, you're out of luck, as that's not included in the filters for iOS 5.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文