So for this project, I’m working on, I have 2 non-overlapping photos. These two photos need to be stitched together, one on the top and one on the bottom, and then you will be able to see the whole picture. Any ideas on what module I should use to do this?
Share
The python imaging library (updated link) will eat that task for breakfast.
See the tutorial in particular the "Cutting, Pasting and Merging Images" section for some relevant help.
For rough outline, load both images with
Image.open, find out how big the output image will be by using thesizeattribute and some addition, create the output image withImage.newand then use thepastemethod to past the two original images in.