Git Product home page Git Product logo

universal_style_transfer's Introduction

The simple implemention of Universal_style_transfer

This is a Pytorch implementation of the "Universal Style Transfer via Feature Trasforms" NIPS17 paper.

Given a content image and an arbitrary style image, the program attempts to transfer the visual style characteristics extracted from the style image to the content image generating stylized ouput.

The core architecture is a VGG19 Convolutional Autoencoder performing Whitening and Coloring Transformation on the content and style features in the bottleneck layer.

Installation

  • Needed Python packages can be installed using conda package manager by running conda env create -f environment.yaml

Usage

python main.py ARGS

Possible ARGS are:

  • --content CONTENT path of the content image (or a directory containing images) to be trasformed;
  • --style STYLE path of the style image (or a directory containing images) to use;
  • --contentSize CONTENTSIZE reshape content image to have the new specified maximum size (keeping aspect ratio);
  • --styleSize STYLESIZE reshape style image to have the new specified maximum size (keeping aspect ratio);
  • --outDir OUTDIR path of the directory where stylized results will be saved (default is outputs/);
  • --alpha ALPHA hyperparameter balancing the blending between original content features and WCT-transformed features (default is 0.2);
  • --no-cuda flag to enable CPU-only computations (default is False i.e. GPU (CUDA) accelaration);

An example

python main.py --content inputs/contents/in4.jpg --style inputs/styles/candy.jpg  

Result

universal_style_transfer's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.