tgray / hyperdither

atkinson style dithering in python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hyperdither.py

Simple Atkinson style dithering using Python.

To speed up the processing, this script requires numpy and numba. I'm sure there are easy ways to do the same using pure C, but I don't know them.

My main dither function is a little ratty looking. I was surprised though that it was more efficient than some other PIL/PILLOW implementations I found. Once I sped it up with numba, it became significantly faster.

Example

Input image:

cat

Command:

hyperdither.py -1 cat.jpg

Output:

out cat

Reduced contrast:

hyperdither.py -1 cat.jpg -c .85

out cat

Options

  • -1: 1-bit black and white file. Otherwise the output is encoded as an RGB file.
  • -t: the black/white threshold. Everything above is black. The maximum is 255.
  • -d: dpi out output file. Only for printing purposes. Default is 72 dpi.
  • -e: output filetype. Must be accepted by PILLOW or it will throw an exception. Default is png.
  • -b: start at bottom left instead of top left with the dithering.
  • -c: boost contrast by specified amount (in terms of pillow's ImageEnhancers factor: 1 is no change).
  • -s: boost sharpness by specified amount (in terms of pillow's ImageEnhancers factor: 1 is no change).
  • -r: resize pre-dither image on longest dimension. Makes the image smaller only, pre-dithering.
  • -2: double post-dither image using nearest neighbors. Makes output image twice as large as the pre-dither image. If image is scaled from the resized pre-dither image if the -r option was specified.

For contrast and sharpness, 1 is default and does not need to be specified. Numbers larger than 1 increase sharpness/contrast, numbers below 1 reduce it. Negative numbers for contrast invert the image. If you want to go negative, I found that specifying the option like -c"-1" will give you minus 1. Remove the space and surround the argument by quotes.

I found values of 0.8 to 1.2 are good for contrast if you want lighten or darken specific areas.

Requirements

Links

About

atkinson style dithering in python


Languages

Language:Python 100.0%