show/hide this revision's text 4 added 176 characters in body

I'm trying to add two images together using numpy and PIL. The way I would do this in matlab would be something like:

>> M1 = imread('_1.jpg');
>> M2 = imread('_2.jpg');
>> resM = M1 + M2;
>> imwrite(resM, 'res.jpg');

I get something like this:

alt text

Using a compositing program and adding the images the matlab result seems to be right.

In python I'm trying to do the same thing like this:

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')

and i get something like this:

alt text

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.

I also saw that there is an Image.blend() but that requieres an alpha.

Whats the best way to achieve what I'm looking for?

Source Images:

alt text alt text

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.

show/hide this revision's text 3 added source images

I'm trying to add two images together using numpy and PIL. The way I would do this in matlab would be something like:

>> M1 = imread('_1.jpg');
>> M2 = imread('_2.jpg');
>> resM = M1 + M2;
>> imwrite(resM, 'res.jpg');

I get something like this:

alt text

Using a compositing program and adding the images the matlab result seems to be right.

In python I'm trying to do the same thing like this:

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')

and i get something like this:

alt text

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.

I also saw that there is an Image.blend() but that requieres an alpha.

Whats the best way to achieve what I'm looking for?

Source Images:

alt text alt text

show/hide this revision's text 2 trying to fix images

I'm trying to add two images together using numpy and PIL. The way I would do this in matlab would be something like:

>> M1 = imread('_1.jpg');
>> M2 = imread('_2.jpg');
>> resM = M1 + M2;
>> imwrite(resM, 'res.jpg');

I get something like this:

alt text

Using a compositing program and adding the images the matlab result seems to be right.

In python I'm trying to do the same thing like this:

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')

and i get something like this:

alt text

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.

I also saw that there is an Image.blend() but that requieres an alpha.

Whats the best way to achieve what I'm looking for?

show/hide this revision's text 1