├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd ├── atkinson.go ├── burkes.go ├── floydsteinberg.go ├── main.go ├── sierra2.go ├── sierra3.go ├── sierra_lite.go └── stucki.go ├── dither_color.go ├── dither_mono.go ├── ditherer.go ├── go.mod ├── input ├── Lenna.png ├── david.jpg ├── flower.jpg ├── gopher.jpg └── portal.jpg └── output ├── color ├── Atkinson.png ├── Burkes.png ├── FloydSteinberg.png ├── Sierra-2.png ├── Sierra-3.png ├── Sierra-Lite.png └── Stucki.png └── mono ├── Atkinson.png ├── Burkes.png ├── FloydSteinberg.png ├── Sierra-2.png ├── Sierra-3.png ├── Sierra-Lite.png └── Stucki.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: esimov -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/README.md -------------------------------------------------------------------------------- /cmd/atkinson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/atkinson.go -------------------------------------------------------------------------------- /cmd/burkes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/burkes.go -------------------------------------------------------------------------------- /cmd/floydsteinberg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/floydsteinberg.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/sierra2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/sierra2.go -------------------------------------------------------------------------------- /cmd/sierra3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/sierra3.go -------------------------------------------------------------------------------- /cmd/sierra_lite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/sierra_lite.go -------------------------------------------------------------------------------- /cmd/stucki.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/cmd/stucki.go -------------------------------------------------------------------------------- /dither_color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/dither_color.go -------------------------------------------------------------------------------- /dither_mono.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/dither_mono.go -------------------------------------------------------------------------------- /ditherer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/ditherer.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/esimov/dithergo 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /input/Lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/input/Lenna.png -------------------------------------------------------------------------------- /input/david.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/input/david.jpg -------------------------------------------------------------------------------- /input/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/input/flower.jpg -------------------------------------------------------------------------------- /input/gopher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/input/gopher.jpg -------------------------------------------------------------------------------- /input/portal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/input/portal.jpg -------------------------------------------------------------------------------- /output/color/Atkinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/Atkinson.png -------------------------------------------------------------------------------- /output/color/Burkes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/Burkes.png -------------------------------------------------------------------------------- /output/color/FloydSteinberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/FloydSteinberg.png -------------------------------------------------------------------------------- /output/color/Sierra-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/Sierra-2.png -------------------------------------------------------------------------------- /output/color/Sierra-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/Sierra-3.png -------------------------------------------------------------------------------- /output/color/Sierra-Lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/Sierra-Lite.png -------------------------------------------------------------------------------- /output/color/Stucki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/color/Stucki.png -------------------------------------------------------------------------------- /output/mono/Atkinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/Atkinson.png -------------------------------------------------------------------------------- /output/mono/Burkes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/Burkes.png -------------------------------------------------------------------------------- /output/mono/FloydSteinberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/FloydSteinberg.png -------------------------------------------------------------------------------- /output/mono/Sierra-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/Sierra-2.png -------------------------------------------------------------------------------- /output/mono/Sierra-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/Sierra-3.png -------------------------------------------------------------------------------- /output/mono/Sierra-Lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/Sierra-Lite.png -------------------------------------------------------------------------------- /output/mono/Stucki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esimov/dithergo/HEAD/output/mono/Stucki.png --------------------------------------------------------------------------------