提问人:Abdulmuid Olaniyan 提问时间:11/8/2023 最后编辑:NicolasAbdulmuid Olaniyan 更新时间:11/9/2023 访问量:37
python 中的图片
Image in python
问:
我们得到了一张图像(交通停止标志),从左到右的部分是绿色的,我们被告知使用 python 将其更改为红色,但我在定位该部分时遇到了问题
我尝试将宽度除以 2,以为它会从四分之一部分开始,但它只覆盖左侧
def fix_middle(picture):
picture = Image.open(picture)
width, height = picture.size
mid_width = int(width * 0.5)
for y in range(height):
for x in range(mid_width):
red, green, blue = picture.getpixel((x, y))
picture.putpixel((x, y), (red, 0, blue))
picture.show()
fix_middle("stop_colored.png")
答: 暂无答案
评论