【问题标题】:Convert image into black and white image without using Gray-scale of Device in iphone将图像转换为黑白图像而不使用iphone中的设备灰度 【发布时间】:2011-12-13 02:27:19 【问题描述】: 我们必须在从相机捕获后将图像转换为黑白图像。 请帮忙将彩色图像转换成黑白图像。 谢谢, 理州 【问题讨论】: 标签: iphone ios 【解决方案1】: 一种简单的方法是取 RGB 值的平均值并将其用作新的 RGB 值。假设 rgb=(45, 60, 20) 将是 rgb_gray=(41,41,41) 这一切都描述得很好here 【讨论】: