0 votes
in Python Imaging Library by
How to Merge RGB band using python

1 Answer

0 votes
by
need to convert each channel into a luminosity channel. So instead of this:

red = Image.open("red.TIF")

you need to do this:

red = Image.open("red.TIF").convert('L')

rinse and repeat for G and B and you're done!
...