Perhaps the most challenging to implement, this section originally started out as an attempt to colorize grey scale images by predicting color values based on a similiar image's pixel locations. Two different approaches were utlized here, one with multivariate linear regression, and one with multivariate polynomial regression. Linear regression was more straight foward in implementation but had rather unfavorable results. Polynomial regeression on the other hand gave some interesting results, but required testing several different degrees for the polynomials used. The difficulties encountered in trying to colorize images using this approach was overlaying the predicted colors onto the original grey scale image. This will be discussed in more detail in the Process section, but hitting this barrier resulted in modifying the code and recognizing that it produced blurred, colorized, images with very little traits of the original image. Little visible traits of course is favorable in concealing an identity when blurring an image, therefore implying the code did its job! Something to note as well was that images of poor resolution did not fair well in passing through the algorithm as well. (ADD OVERLEAF THEORY PIC on polynomial regression)