Programming Project #6: Stitching Photo Mosaics

Emilie Gao (abe)

6A: Image Warping and Mosaicing

Overview:

This project consisted really of 3 parts: Calculating the H-Matrix (which is the matrix used to transform image A to the shape of image B, or a square for rectification), transforming the actual rectification (Where we align the image to a square), and actually stitching the images together.

Rectify Image

To calculate the H-Matrix, I used this equation.

HMatrix

I always use the 4 corners of some square or rectangle shape for my x, y points, although you could use as many as you want. Here are some examples of rectified images:

philz menu original philz menu rectified
laptop original laptop rectified

Transform image

To transform the image, I used scipy.transform.warp() which was said on the piazza. This multiplied the original image's pixels by the H-Matrix in order to find the new image's place. For my 3 images, say image A, image B, and image C, I warped image A -> image B, and image C -> B so that they all combine with image B.
In this example, I transformed one image of a coffee machine so that the screen of image A became the same shape as the screen in image B.

Blend

Finally, once we had all three warped images, I used linear blending to combine them. So when the images first start to overlap, I would make a gradient from 1 to 0. Anything with only one picture (without any overlap) would have 100% of that image. Also, after, there is a lot of additional black space which we can just easily crop out to make the image look better

Liza's Room


coffee screen 1 original coffee screen 1 original coffee screen 1 original
coffee screen 1 original coffee screen 1 original coffee screen 1 original
coffee screen 1 original

cropped:

coffee screen 1 original

Philz


coffee screen 1 original coffee screen 1 original coffee screen 1 original
coffee screen 1 original coffee screen 1 original coffee screen 1 original
coffee screen 1 original

cropped:


coffee screen 1 original

Safeway


coffee screen 1 original coffee screen 1 original coffee screen 1 original
coffee screen 1 original coffee screen 1 original coffee screen 1 original
coffee screen 1 original

cropped:


coffee screen 1 original