从二进制数据到wxbitmap

时间:2011-12-28 15:57:13

标签: python image binary wxpython

我有一个设备将灰度图像存储为一系列8位无符号整数值。我想编写一个python程序来从文件中读取这些图像并使用wxBitmap显示它们。我有一个有效的代码,但由于格式之间的大量转换,它似乎效率低下。

高度赞赏任何有关更快代码的建议。

我目前的代码:

imagearray=numpy.fromfile(file=self.f, dtype=numpy.uint8, count=npixels).reshape(Height, Width)[::-1]
pilimage = Image.fromarray(imagearray)
rgb= pilimage.convert('RGB')
rgbdata = rgb.tostring()
WxBitmap = wx.EmptyBitmap(Width,Height)            
WxBitmap.CopyFromBuffer(rgbdata)
output=WxBitmap

1 个答案:

答案 0 :(得分:1)

您可以直接从numpy数组中获取wxBitmap This is an example from wxPyWiki

import wx, numpy

def GetBitmap( self, width=32, height=32, colour = (0,0,0) ):
        array = numpy.zeros( (height, width, 3),'uint8')
        array[:,:,] = colour
        image = wx.EmptyImage(width,height)
        image.SetData( array.tostring())
        wxBitmap = image.ConvertToBitmap()       # OR:  wx.BitmapFromImage(image)
        return wxBitmap