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.
|
|
You can use PyPNG. It's a pure Python (no dependencies) open source PNG encoder/decoder and it supports writing NumPy arrays as images. |
||
|
|
|
|
If you have numpy, then you have scipy:
I think this is a more natural solution since it is enclosed within numpy/scipy. At least, that's what I do. |
||
|
|
|
|
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):
|
||
|
|
|
|
If you have matplotlib, you can do:
|
||
|
|
