我正在尝试使用mayavi场景的透明度保存屏幕截图。基于this discussion我编写了一个脚本来保存图形,但结果是输出混乱。在最小工作示例下面:在mayavi中,我创建了一个包含两个球体的场景,首先将其保存为RGB,然后保存为RGBA格式。保存到RGB工作,而RGBA文件是一个烂摊子。我相信,问题出在mayavi方面,因为如果我从mayavi获取RGB图像,添加透明度通道并使用PIL保存文件,结果就是我所期望的。
这是一个错误还是mayavi rgba格式应该以某种方式转换为PIL接受的格式?
from mayavi import mlab
from PIL import Image
fig=mlab.figure(1, bgcolor=(1, 1, 1), size=(700, 700))
# Set camera position and properties
fig.scene.parallel_projection = True
fig.scene.show_axes = True
# Draw atoms
x, y, z, t = [0.0,1.0] , [0.0,1.0], [0.0,0.0], [1,2]
dat = mlab.pipeline.scalar_scatter(x, y, z, t, figure=fig)
fig = mlab.pipeline.glyph(dat,scale_mode='none', scale_factor=0.5, figure=fig)
imgmap_RGB = mlab.screenshot(figure=fig, mode='rgb', antialiased=True)
img_RGB = Image.fromarray(imgmap_RGB, 'RGB')
img_RGB.save('foo_RGB.png')
imgmap_RGBA = mlab.screenshot(figure=fig, mode='rgba', antialiased=True)
img_RGBA = Image.fromarray(imgmap_RGBA, 'RGBA')
img_RGBA.save('foo_RGBA.png')
mlab.show()
答案 0 :(得分:4)
由于某些我不知道的原因,mayavi将返回0到1之间的RGBA数据浮点数和RGB数据的无符号整数,请参阅https://github.com/enthought/mayavi/blob/master/mayavi/tools/figure.py#L304(我无法找到文档中的信息。)
要进行转换,请将img_RGBA = ...
行替换为
img_RGBA = Image.fromarray(np.array(imgmap_RGBA*255, dtype=np.uint8))
之后我可以成功查看png文件。