ProGamerGov / neural-style-pt

PyTorch implementation of neural style transfer algorithm
MIT License
833 stars 178 forks source link

Tiling #51

Closed spot92 closed 4 years ago

spot92 commented 4 years ago

How hard would it be to get tiling? I have been working on doing this, but I am struggling to figure out how to style the tiles that I have from a large image. Trying not to do it one at a time, but some sort of for loop situation.

ProGamerGov commented 4 years ago

There's two options.

  1. You could translate VaKonS' neural-style which has tiling built into it: https://github.com/VaKonS/neural-style. This is probably going to be the hardest option.

  2. Or you could use a bash script from here: https://github.com/ProGamerGov/Neural-Tile/ and just paste in your neural-style-pt parameters. This will be the easiest option if you want some automation.

spot92 commented 4 years ago

I'll look into these, thanks!

spot92 commented 4 years ago

If a batch file version of the https://github.com/ProGamerGov/Neural-Tile/ is ever made by someone to work with the python code, I would be interested in it. Working on figuring it out myself.