├── .clang-format ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── nanomagick │ ├── frontalface.h │ └── nanomagick.c └── wasm │ ├── Makefile │ ├── grayskull.c │ ├── grayskull.js │ └── index.html ├── grayskull.h ├── test.c └── testdata ├── aruco.pgm ├── document.pgm ├── grayskull.pgm ├── lena.pgm └── receipt.pgm /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/README.md -------------------------------------------------------------------------------- /examples/nanomagick/frontalface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/examples/nanomagick/frontalface.h -------------------------------------------------------------------------------- /examples/nanomagick/nanomagick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/examples/nanomagick/nanomagick.c -------------------------------------------------------------------------------- /examples/wasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/examples/wasm/Makefile -------------------------------------------------------------------------------- /examples/wasm/grayskull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/examples/wasm/grayskull.c -------------------------------------------------------------------------------- /examples/wasm/grayskull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/examples/wasm/grayskull.js -------------------------------------------------------------------------------- /examples/wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/examples/wasm/index.html -------------------------------------------------------------------------------- /grayskull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/grayskull.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/test.c -------------------------------------------------------------------------------- /testdata/aruco.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/testdata/aruco.pgm -------------------------------------------------------------------------------- /testdata/document.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/testdata/document.pgm -------------------------------------------------------------------------------- /testdata/grayskull.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/testdata/grayskull.pgm -------------------------------------------------------------------------------- /testdata/lena.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/testdata/lena.pgm -------------------------------------------------------------------------------- /testdata/receipt.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zserge/grayskull/HEAD/testdata/receipt.pgm --------------------------------------------------------------------------------