https://twitter.com/chrnclee/status/1759067248810238392
NOWWEAREHERE implements style transfer method for styling the rendered image
- Install opencv:
pip install opencv
- Install tensorflow:
pip install tensorflow
reference_style_image_path = 'path/to/your/reference.png'
input_image_path = 'path/to/your/input.png'
output_image_path = 'path/to/save/output.png'
Replace 'path/to/your/reference.png', 'path/to/your/input.png', and 'path/to/save/output.png' with the actual paths and filenames of your reference style image, input image, and desired output image, respectively.