我尝试使用遗传算法生成由三角形图片组成的图片。我使用Image.blend()函数,但结果太暗,看起来很糟糕。我怎么处理它? / p>
image_config = {
'mode': 'RGBA',
'size': sourceimg.size,
'color': 'black'
}
im = Image.new(**image_config)
for res in self.decode(chrom):
im_tmp = Image.new(**image_config)
draw = ImageDraw.Draw(im_tmp, 'RGBA')
draw.polygon(xy=[res[0], res[1], res[2]], fill=res[3])
im = Image.blend(im, im_tmp, 0.5)