├── .gitignore ├── .travis.yml ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── examples ├── create_histogram_grid.c └── no-velocity.c ├── include ├── histogram_grid.h ├── polar_histogram.h └── vfh.h └── src ├── histogram_grid.c ├── polar_histogram.c └── vfh.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/.travis.yml -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/README.md -------------------------------------------------------------------------------- /examples/create_histogram_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/examples/create_histogram_grid.c -------------------------------------------------------------------------------- /examples/no-velocity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/examples/no-velocity.c -------------------------------------------------------------------------------- /include/histogram_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/include/histogram_grid.h -------------------------------------------------------------------------------- /include/polar_histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/include/polar_histogram.h -------------------------------------------------------------------------------- /include/vfh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/include/vfh.h -------------------------------------------------------------------------------- /src/histogram_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/src/histogram_grid.c -------------------------------------------------------------------------------- /src/polar_histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/src/polar_histogram.c -------------------------------------------------------------------------------- /src/vfh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarie/vector-field-histogram/HEAD/src/vfh.c --------------------------------------------------------------------------------