Code In Place Final Project: Image Inception on Python (Demo)

by Jeannette X

Description

Image in Image is a python application that allows you to take a collage of any number of images to form one final image (i.e. image inception). How it Works: this program pixelates target image, and fills each pixel with another image (patch) with the patch colour filtered to match the colour of said pixel. To filter component image with colour of pixel, we used RGBTransform() from https://gist.github.com/WChargin/d8eb0cbafc4d4479d004 by William Chargin to apply an affline transform on PIL images.