dribnet / pixray

neural image generation
Other
402 stars 53 forks source link

pixel init_image: init cell count is 0, this shouldn't happen. but it did? #18

Closed dribnet closed 3 years ago

dribnet commented 3 years ago

there is a bug in pixeldrawer with certain pixel_size settings. can be reproduced with:

pixray.add_settings(size=[320,180], pixel_size=[320,180])

size workaround is

pixray.add_settings(size=[960,540], pixel_size=[320,180])

but this should work without the workaround.

dribnet commented 3 years ago

fixed in #19