Hey @sk Would you mind telling me how you do photo dithering over at your image board?
3 years ago
i played around with the various dithering strategies and i landed on ordered dithering. it may not be as accurately representative and well defined as the floyd-steinberg, but i just love the crosshatch aesthetic 路 3 years ago
Also surprisingly straightforward to implement yourself https://en.wikipedia.org/wiki/Floyd鈥揝teinberg_dithering 路 3 years ago
https://en.wikipedia.org/wiki/Floyd
There is also dither: https://github.com/makeworld-the-better-one/dither (command line wrapper: https://github.com/makeworld-the-better-one/didder) 路 3 years ago
https://github.com/makeworld-the-better-one/dither
https://github.com/makeworld-the-better-one/didder
Awesome, exactly what i wanted to know. Thank you very much!! 路 3 years ago
for sure! it's not too interesting i'm afraid. it's just using imagemagick under the hood https://github.com/imagemagick/imagemagick
the exact command i use is
convert $INPUT -resize '512x512>' -ordered-dither o2x2,3 $OUTPUT
路 3 years ago