https://github.com/progamergov/neural-display
Displays your styled outputs alongside their content and style image(s)
https://github.com/progamergov/neural-display
artistic neural-style style style-transfer transfer
Last synced: over 1 year ago
JSON representation
Displays your styled outputs alongside their content and style image(s)
- Host: GitHub
- URL: https://github.com/progamergov/neural-display
- Owner: ProGamerGov
- Created: 2017-02-04T23:31:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-05T20:07:46.000Z (over 9 years ago)
- Last Synced: 2025-02-14T12:17:52.219Z (over 1 year ago)
- Topics: artistic, neural-style, style, style-transfer, transfer
- Language: Shell
- Homepage:
- Size: 25.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neural-Display
Display your styled outputs alongside their content and style image(s), in a single image.
---
#Requirements
[Neural-Style](https://github.com/jcjohnson/neural-style) or a [similar style transfer system](https://github.com/jcjohnson/neural-style/wiki/Similar-to-Neural-Style).
ImageMagick can be installed on Ubuntu with:
`sudo apt-get install imagemagick`
---
#Usage:
For a horizontal comparison:
`./neural-display-h.sh `
For a vertical comparison:
`./neural-display-v.sh `
The style images should be separated with a comma like they are in [Neural-Style](https://github.com/jcjohnson/neural-style) commands:
`style1.png,style2.png,style3.png`
If you end up with [a white background showing/the images not filling the space correctly](https://i.imgur.com/nmbJ9nZ.jpg), change the `size_factor` value in the applicable script to a larger value.
---
#Example Outputs:





---
#Troubleshooting
If you face a permission error, try using chmod to fix the issue:
`chmod u+x ./neural-display-h.sh`
Or:
`chmod u+x ./neural-display-v.sh`
You can also try adding sudo bash like:
`sudo bash ./neural-display-h.sh`
Or:
`sudo bash ./neural-display-v.sh`
---