RGB 操作公式
我一直在尝试 HTML5 canvas api,并编写了一个脚本,可以从彩色图像创建黑白图像。
我使用的 RGB 到灰度的公式是: r * 0.2989 + g * 0.5870 + b * 0.1140
我想知道是否有人知道通过 RGB 值操作图像的更多公式。
I have been experimenting with the HTML5 canvas api and have written a script that creates black and white images from color images.
The formula for RGB to grayscale that I'm using is: r * 0.2989 + g * 0.5870 + b * 0.1140
I would like to know if anyone knows of any more formulas for manipulating images through RGB values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一些
,其中 c0 和 c1 是颜色十进制值,c 是输出值
here are some
where c0 and c1 are color decimal values and c is the output value
这里有一种使图像变暗的方法:
还有其他几种方法可以操纵 RGB 颜色,例如阈值处理、交换颜色通道、仅显示红色、绿色或蓝色通道、反转颜色以及对比度和亮度等。还有很多其他的。使用这些关键字在网络上搜索可以揭示更改图像颜色的其他方法。 这个问题解释了如何制作现有颜色的色调或阴影。请特别注意有关线性 RGB 和伽玛校正的注释。
Here is a way to darken an image:
There are several other ways to manipulate RGB colors, such as thresholding, swapping color channels, showing only the red, green, or blue color channels, inverting colors, as well as contrast and brightness, among many others. Searching the Web with those keywords can reveal other ways to change an image's colors. This question explains how to make tints or shades of existing colors. Note in particular the remark about linear RGB and gamma correction.