├── .gitignore ├── Doxyfile ├── Makefile ├── README.md ├── dali.c ├── dali.h ├── dali_dist.c ├── dali_internal.h ├── dali_mesh.c ├── octave ├── Makefile ├── dali_compute.c ├── dali_distance.c └── test.m └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/README.md -------------------------------------------------------------------------------- /dali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/dali.c -------------------------------------------------------------------------------- /dali.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/dali.h -------------------------------------------------------------------------------- /dali_dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/dali_dist.c -------------------------------------------------------------------------------- /dali_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/dali_internal.h -------------------------------------------------------------------------------- /dali_mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/dali_mesh.c -------------------------------------------------------------------------------- /octave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/octave/Makefile -------------------------------------------------------------------------------- /octave/dali_compute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/octave/dali_compute.c -------------------------------------------------------------------------------- /octave/dali_distance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/octave/dali_distance.c -------------------------------------------------------------------------------- /octave/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/octave/test.m -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobbens/DaLI/HEAD/test.c --------------------------------------------------------------------------------