numpy, PIL adding an image - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T09:41:42Zhttp://stackoverflow.com/feeds/question/524930http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/524930/numpy-pil-adding-an-image3numpy, PIL adding an imagerem72009-02-08T01:15:16Z2009-11-11T04:49:56Z
<p>I'm trying to add two images together using numpy and PIL. The way I would do this in matlab would be something like:</p>
<pre><code>>> M1 = imread('_1.jpg');
>> M2 = imread('_2.jpg');
>> resM = M1 + M2;
>> imwrite(resM, 'res.jpg');
</code></pre>
<p>I get something like this:</p>
<p><img src="http://www.infiniteloop.cc/matlab.jpg" alt="alt text" /></p>
<p>Using a compositing program and adding the images the matlab result seems to be right.</p>
<p>In python I'm trying to do the same thing like this:</p>
<pre><code>from PIL import Image
from numpy import *
im1 = Image.open('/Users/rem7/Desktop/_1.jpg')
im2 = Image.open('/Users/rem7/Desktop/_2.jpg')
im1arr = asarray(im1)
im2arr = asarray(im2)
addition = im1arr + im2arr
resultImage = Image.fromarray(addition)
resultImage.save('/Users/rem7/Desktop/a.jpg')
</code></pre>
<p>and i get something like this:</p>
<p><img src="http://www.infiniteloop.cc/python.jpg" alt="alt text" /></p>
<p>Why am I getting all those funky colors? I also tried using ImageMath.eval("a+b", a=im1, b=im2), but I get an error about RGB unsuported.</p>
<p>I also saw that there is an Image.blend() but that requieres an alpha.</p>
<p>Whats the best way to achieve what I'm looking for?</p>
<p>Source Images:</p>
<p><img src="http://www.infiniteloop.cc/_1.jpg" alt="alt text" />
<img src="http://www.infiniteloop.cc/_2.jpg" alt="alt text" /></p>
<p>humm, ok well I added the source images using the add image icon and they show up when I'm editing the post, but for some reason the images don't show up in the post. </p>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/524943#5249432Answer by schnaader for numpy, PIL adding an imageschnaader2009-02-08T01:28:27Z2009-02-08T01:28:27Z<p>It seems the code you posted just sums up the values and values bigger than 256 are overflowing. You want something like "(a + b) / 2" or "max(a + b, 256)". The latter seems to be the way that your Matlab example does it.</p>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/524952#5249520Answer by hacken for numpy, PIL adding an imagehacken2009-02-08T01:32:40Z2009-02-08T01:32:40Z<p>Your sample images are not showing up form me so I am going to do a bit of guessing.</p>
<p>I can't remember exactly how the numpy to pil conversion works but there are two likely cases. I am 95% sure it is 1 but am giving 2 just in case I am wrong.
1) 1 im1Arr is a MxN array of integers (ARGB) and when you add im1arr and im2arr together you are overflowing from one channel into the next if the components b1+b2>255. I am guessing matlab represents their images as MxNx3 arrays so each color channel is separate. You can solve this by splitting the PIL image channels and then making numpy arrays</p>
<p>2) 1 im1Arr is a MxNx3 array of bytes and when you add im1arr and im2arr together you are wrapping the component around. </p>
<p>You are also going to have to rescale the range back to between 0-255 before displaying. Your choices are divide by 2, scale by 255/array.max() or do a clip. I don't know what matlab does</p>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/525129#5251296Answer by bpowah for numpy, PIL adding an imagebpowah2009-02-08T03:58:33Z2009-02-08T03:58:33Z<p>Using PIL's blend() with an alpha value of 0.5 would be equivalent to (im1arr + im2arr)/2. Blend does not require that the images have alpha layers.</p>
<p>Try this:</p>
<pre><code>from PIL import Image
im1 = Image.open('/Users/rem7/Desktop/_1.jpg')
im2 = Image.open('/Users/rem7/Desktop/_2.jpg')
Image.blend(im1,im2,0.5).save('/Users/rem7/Desktop/a.jpg')
</code></pre>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/525476#525476-1Answer by J.F. Sebastian for numpy, PIL adding an imageJ.F. Sebastian2009-02-08T09:54:53Z2009-02-08T09:54:53Z<p>To clamp numpy array values:</p>
<pre><code>>>> c = a + b
>>> c[c > 256] = 256
</code></pre>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/526031#5260315Answer by Ivan for numpy, PIL adding an imageIvan2009-02-08T17:05:45Z2009-02-08T17:05:45Z<p>As everyone suggested already, the weird colors you're observing are overflow. And as you point out in the <a href="http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/524943#524943">comment of schnaader's answer</a> you <strong>still get overflow</strong> if you add your images like this:</p>
<pre><code>addition=(im1arr+im2arr)/2
</code></pre>
<p>The reason for this overflow is that your numpy arrays (<em>im1arr</em> <em>im2arr</em>) are of the <strong>uint8</strong> type (i.e. 8bit). This means each element of the array can only hold values up to 255, so when your sum exceeds 255, it loops back around 0:</p>
<pre><code>>>>array([255,10,100],dtype='uint8') + array([1,10,160],dtype='uint8')
array([ 0, 20, 4], dtype=uint8)
</code></pre>
<p>To avoid overflow, your arrays should be able to contain values beyond 255. You need to <strong>convert them to floats</strong> for instance, perform the blending operation and <strong>convert the result back to uint8</strong>:</p>
<pre><code>im1arrF = im1arr.astype('float')
im2arrF = im2arr.astype('float')
additionF = (im1arrF+im2arrF)/2
addition = additionF.astype('uint8')
</code></pre>
<p>You <strong>should not</strong> do this:</p>
<pre><code>addition=im1arr/2 + im2arr/2
</code></pre>
<p>as you loose information, by squashing the dynamic of the image (you effectively make the images 7bit) before you perform the blending information.</p>
<p><strong>Matalb note</strong>: the reason you don't see this problem in matlab, is probably because matlab takes care of the overflow implicitly in one of its functions.</p>
http://stackoverflow.com/questions/524930/numpy-pil-adding-an-image/1713084#17130840Answer by Steve for numpy, PIL adding an imageSteve2009-11-11T04:49:56Z2009-11-11T04:49:56Z<p>In addition, you may find it useful to simply use scipy.misc for reading and saving:</p>
<pre><code>import scipy
img_in = scipy.misc.imread('filename.jpg')
# stuff
scipy.misc.imsave('outfile.jpg', img_out)
</code></pre>