What is the fastest way to draw an image from discrete pixel values in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:21:46Zhttp://stackoverflow.com/feeds/question/434583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/434583/what-is-the-fastest-way-to-draw-an-image-from-discrete-pixel-values-in-python5What is the fastest way to draw an image from discrete pixel values in Python?saffsd2009-01-12T06:08:12Z2009-01-12T16:20:57Z
<p>I wish to draw an image based on computed pixel values, as a means to visualize some data. Essentially, I wish to take a 2-dimensional matrix of color triplets and render it. </p>
<p>Do note that this is not image processing, since I'm not transforming an existing image nor doing any sort of whole-image transformations, and it's also not vector graphics as there is no pre-determined structure to the image I'm rendering- I'm probably going to be producing amorphous blobs of color one pixel at a time. </p>
<p>I need to render images about 1kx1k pixels for now, but something scalable would be useful. Final target format is PNG or any other lossless format.</p>
<p>I've been using PIL at the moment via ImageDraw's draw.point , and I was wondering, given the very specific and relatively basic features I require, is there any faster library available?</p>
http://stackoverflow.com/questions/434583/what-is-the-fastest-way-to-draw-an-image-from-discrete-pixel-values-in-python/434801#4348011Answer by Mapad for What is the fastest way to draw an image from discrete pixel values in Python?Mapad2009-01-12T08:35:27Z2009-01-12T15:32:39Z<p>I think you use Pil to generate an image file on the disk, and you later load it with an image reader software.</p>
<p>You should get a small speed improvement by rendering directly the picture in memory (you will save the cost of writing the image on the disk and then re-loading it). Have a look at this thread <a href="http://stackoverflow.com/questions/326300/python-best-library-for-drawing">http://stackoverflow.com/questions/326300/python-best-library-for-drawing</a> for how to render that image with various python modules.</p>
<p>I would personally try wxpython and the <strong>dc.DrawBitmap</strong> function. If you use such a module rather than an external image reader you will have many benefits:</p>
<ul>
<li>speed</li>
<li>you will be able to create an interactive user interface with buttons for parameters.</li>
<li>you will be able to easily program a Zoomin and Zoomout function</li>
<li>you will be able to plot the image as you compute it, which can be quite useful if the computation takes a lot of time</li>
</ul>
http://stackoverflow.com/questions/434583/what-is-the-fastest-way-to-draw-an-image-from-discrete-pixel-values-in-python/435215#4352153Answer by bobince for What is the fastest way to draw an image from discrete pixel values in Python?bobince2009-01-12T11:57:48Z2009-01-12T11:57:48Z<pre><code>import Image
im= Image.new('RGB', (1024, 1024))
im.putdata([(255,0,0), (0,255,0), (0,0,255)])
im.save('test.png')
</code></pre>
<p>Puts a red, green and blue pixel in the top-left of the image.</p>
<p>im.fromstring() is faster still if you prefer to deal with byte values.</p>
http://stackoverflow.com/questions/434583/what-is-the-fastest-way-to-draw-an-image-from-discrete-pixel-values-in-python/435944#4359443Answer by BADC0DE for What is the fastest way to draw an image from discrete pixel values in Python?BADC0DE2009-01-12T16:20:57Z2009-01-12T16:20:57Z<p>If you have numpy and scipy available (and if you are manipulating large arrays in Python, I would recommend them), then the scipy.misc.pilutil.toimage function is very handy.
A simple example:</p>
<pre><code>import numpy as np
import scipy.misc.pilutil as smp
# Create a 1024x1024x3 array of 8 bit unsigned integers
data = np.zeros( (1024,1024,3), dtype=np.uint8 )
data[512,512] = [254,0,0] # Makes the middle pixel red
data[512,513] = [0,0,255] # Makes the next pixel blue
img = smp.toimage( data ) # Create a PIL image
img.show() # View in default viewer
</code></pre>
<p>The nice thing is toimage copes with diferent data types very well, so a 2d array of floating point numbers gets sensibly converted to greyscale etc.</p>
<p>You can download numpy and scipy from <a href="http://www.scipy.org/SciPy" rel="nofollow">http://www.scipy.org/SciPy</a>.</p>