Neural style transfer (NST) refers to a class of software algorithms that manipulate digital images, or videos, in order to adopt the appearance or visual style of another image. NST algorithms are characterized by their use of deep neural networks for the sake of image transformation. Common uses for NST are the creation of artificial artwork from photographs, for example by transferring the appearance of famous paintings to user-supplied photographs. Several notable mobile apps use NST techniques for this purpose, including DeepArt and Prisma. This method has been used by artists and designers around the globe to develop new artwork based on existent style(s).
NST is an example of image stylization, a problem studied for over two decades within the field of non-photorealistic rendering. The first two example-based style transfer algorithms were image analogies[1] and image quilting.[2] Both of these methods were based on patch-based texture synthesis algorithms.
Given a training pair of images–a photo and an artwork depicting that photo–a transformation could be learned and then applied to create new artwork from a new photo, by analogy. If no training photo was available, it would need to be produced by processing the input artwork; image quilting did not require this processing step, though it was demonstrated on only one style.
NST was first published in the paper "A Neural Algorithm of Artistic Style" by Leon Gatys et al., originally released to ArXiv 2015,[3] and subsequently accepted by the peer-reviewed CVPR conference in 2016.[4] The original paper used a VGG-19 architecture[5] that has been pre-trained to perform object recognition using the ImageNet dataset.
In 2017, Google AI introduced a method[6] that allows a single deep convolutional style transfer network to learn multiple styles at the same time. This algorithm permits style interpolation in real-time, even when done on video media.
This section closely follows the original paper.
The idea of Neural Style Transfer (NST) is to take two images—a content image
\vec{p}
\vec{a}
\vec{x}
l{L}content(\vec{p},\vec{x})
lLstyle(\vec{a},\vec{x})
The total loss is a linear sum of the two:By jointly minimizing the content and style losses, NST generates an image that blends the content of the content image with the style of the style image.
Both the content loss and the style loss measures the similarity of two images. The content similarity is the weighted sum of squared-differences between the neural activations of a single convolutional neural network (CNN) on two images. The style similarity is the weighted sum of Gram matrices within each layer (see below for details).
The original paper used a VGG-19 CNN, but the method works for any CNN.
Let be an image input to a CNN.
Let be the matrix of filter responses in layer to the image , where:
A given input image is encoded in each layer of the CNN by the filter responses to that image, with higher layers encoding more global features, but losing details on local features.
Let be an original image. Let be an image that is generated to match the content of . Let be the matrix of filter responses in layer to the image .
The content loss is defined as the squared-error loss between the feature representations of the generated image and the content image at a chosen layer
l
l(\vec | |
A | |
ij |
x)
l(\vec{p} | |
A | |
ij |
)
ith
j
l
The total content loss is a linear sum of the content losses of each layer:
l{L}content(\vec{p},\vec{x})=\sumlvll{L}content(\vec{p},\vec{x},l)
vl
The style loss is based on the Gram matrices of the generated and style images, which capture the correlations between different filter responses at different layers of the CNN:whereHere,
l(\vec | |
G | |
ij |
x)
l(\vec | |
G | |
ij |
a)
l
Minimizing this loss encourages the generated image to have similar style characteristics to the style image, as captured by the correlations between feature responses in each layer. The idea is that activation pattern correlations between filters in a single layer captures the "style" on the order of the receptive fields at that layer.
Similarly to the previous case, the
wl
In the original paper, they used a particular choice of hyperparameters.
The style loss is computed by
wl=0.2
conv1_1
, conv2_1
, conv3_1
, conv4_1
, conv5_1
in the VGG-19 network, and zero otherwise. The content loss is computed by wl=1
conv4_2
, and zero otherwise.The ratio
\alpha/\beta\in[5,50] x 10-4
Image
\vecx
\vecp
\vecx
\vecx
\veca
\vecp
, when implemented on a GPU, it takes a few minutes to converge.
In some practical implementations, it is noted that the resulting image has too much high-frequency artifact, which can be suppressed by adding the total variation to the total loss.[7]
Compared to VGGNet, AlexNet does not work well for neural style transfer.[8]
NST has also been extended to videos.[9]
Subsequent work improved the speed of NST for images by using special-purpose normalizations.[10] [11]
In a paper by Fei-Fei Li et al. adopted a different regularized loss metric and accelerated method for training to produce results in real-time (three orders of magnitude faster than Gatys).[12] Their idea was to use not the pixel-based loss defined above but rather a 'perceptual loss' measuring the differences between higher-level layers within the CNN. They used a symmetric convolution-deconvolution CNN. Training uses a similar loss function to the basic NST method but also regularizes the output for smoothness using a total variation (TV) loss. Once trained, the network may be used to transform an image into the style used during training, using a single feed-forward pass of the network. However the network is restricted to the single style in which it has been trained.[12]
In a work by Chen Dongdong et al. they explored the fusion of optical flow information into feedforward networks in order to improve the temporal coherence of the output.[13]
Most recently, feature transform based NST methods have been explored for fast stylization that are not coupled to single specific style and enable user-controllable blending of styles, for example the whitening and coloring transform (WCT).[14]