如何改变python中的颜色但保留其阴影
我想为用户提供一个更改特定像素颜色的选项。如果特定像素是浅蓝色,并且用户选择它是绿色。我应该如何强制执行更改以表示浅绿色?在反之亦然的情况下,如果像素的颜色是深蓝色,我想强制它现在代表深绿色。这可以在 HSV 规模上完成吗?
我有每个像素的 RGB 值
I'd like to give an option to the user to change color of a particular pixel. If the particular pixel is light blue, and the user selects it to be green. How should I enforce the change to represent light green? In the vica versa case if the color of the pixel is dark blue, I'd like to enforce it to now represent dark green. Can this be done in HSV scale?
I have RGB values of each pixel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是将图像转换为 HSV,更改值,然后将其转换回 RGB。
The easiest way to do this is to convert the image to HSV, change the value, and then convert it back to RGB.