Saving a Numpy array as an image - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:04:15Zhttp://stackoverflow.com/feeds/question/902761http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image3Saving a Numpy array as an imageM4562009-05-24T00:08:50Z2009-11-11T04:53:29Z
<p>I have a matrix in the type of a Numpy array. How would I write it to disk it as an image? Any format works (png, jpeg, bmp...). One important constraint is that PIL is not present.</p>
http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/902774#9027744Answer by dF for Saving a Numpy array as an imagedF2009-05-24T00:26:05Z2009-05-24T00:26:05Z<p>You can use <a href="http://code.google.com/p/pypng/" rel="nofollow">PyPNG</a>. It's a pure Python (no dependencies) open source PNG encoder/decoder and it <a href="http://packages.python.org/pypng/ex.html#numpy" rel="nofollow">supports</a> writing NumPy arrays as images.</p>
http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/977040#9770400Answer by DopplerShift for Saving a Numpy array as an imageDopplerShift2009-06-10T17:29:37Z2009-06-10T17:29:37Z<p>If you have matplotlib, you can do:</p>
<pre><code>import matplotlib.pyplot as plt
plt.imshow(matrix) #Needs to be in row,col order
plt.savefig(filename)
</code></pre>
http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/978306#9783060Answer by Autoplectic for Saving a Numpy array as an imageAutoplectic2009-06-10T21:43:06Z2009-06-10T21:43:06Z<p>matplotlib svn has a new function to save images as just an image -- no axes etc. it's a very simple function to backport too, if you don't want to install svn (copied straight from image.py in matplotlib svn, removed the docstring for brevity):</p>
<pre><code>def imsave(fname, arr, vmin=None, vmax=None, cmap=None, format=None, origin=None):
from matplotlib.backends.backend_agg import FigureCanvasAgg as FigureCanvas
from matplotlib.figure import Figure
fig = Figure(figsize=arr.shape[::-1], dpi=1, frameon=False)
canvas = FigureCanvas(fig)
fig.figimage(arr, cmap=cmap, vmin=vmin, vmax=vmax, origin=origin)
fig.savefig(fname, dpi=1, format=format)
</code></pre>
http://stackoverflow.com/questions/902761/saving-a-numpy-array-as-an-image/1713101#17131010Answer by Steve for Saving a Numpy array as an imageSteve2009-11-11T04:53:29Z2009-11-11T04:53:29Z<p>If you have numpy, then you have scipy:</p>
<pre><code>import scipy
scipy.misc.imsave('outfile.jpg', image_array)
</code></pre>
<p>I think this is a more natural solution since it is enclosed within numpy/scipy. At least, that's what I do.</p>