This project demonstrates Neural Style Transfer, where the artistic style of one image is applied to the content of another image using a pre-trained CNN.
- Applies artistic style to a content image
- Uses VGG19 for feature extraction
- Simple and beginner-friendly implementation
- content : input content image
- style : style image
- output : generated image
pip install -r requirements.txt python style_transfer.py
Ref: #1 Neural Transfer Using PyTorch https://pytorch.org/tutorials/advanced/neural_style_tutorial.html
Ref: #2 Neural Style Transfer Tutorial https://www.tensorflow.org/tutorials/generative/style_transfer
Ref: #3 Implementing Neural Style Transfer using PyTorch https://www.geeksforgeeks.org/deep-learning/implementing-neural-style-transfer-using-pytorch/