Style Transfer
=====================
In this problem, you will implement the style transfer algorithm, which is a technique used in computer vision to transfer the style of one image to another. This is achieved by separating the content and style of an image and then combining them to produce a new image that has the style of the target image but the content of the source image.
Example:
Suppose we have two images, a source image of a landscape and a target image of a painting. We want to transfer the style of the painting to the landscape image.
Constraints:
Test Cases
Test Case 1
Input:
['content_image.jpg', 'style_image.jpg', (256, 256)]Expected:
output_image.jpgTest Case 2
Input:
['landscape.jpg', 'painting.jpg', (512, 512)]Expected:
output_image.jpg+ 3 hidden test cases