albarji / neural-style-docker

A dockerized version of neural style transfer algorithms
MIT License
112 stars 34 forks source link

Multiresolution Gatys #19

Closed albarji closed 6 years ago

albarji commented 6 years ago

For the Gatys method, higher quality results can be attained by following a multiresolution strategy, where a small image is generated, then used as initialization for a higher resolution version. This procedure is repeated several times until a very large image is obtained.

Code: https://gist.github.com/jcjohnson/ca1f29057a187bc7721a3a8c418cc7db

Examples of images where this was used:

This strategy is compatible with the tiling method: each tile would be rendered using multiresolution.

albarji commented 6 years ago

Implemented!