├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── classifier.cpp ├── classifier.hpp ├── color.cpp ├── color.hpp ├── constants.hpp ├── features.cpp ├── features.hpp ├── gbm.cpp ├── gbm.hpp ├── labels.cpp ├── labels.hpp ├── pcclassify.cpp ├── pctrain.cpp ├── point_io.cpp ├── point_io.hpp ├── randomforest.cpp ├── randomforest.hpp ├── scale.cpp ├── scale.hpp ├── statistics.hpp └── vendor ├── cxxopts.hpp ├── ethz ├── LICENSE ├── README ├── dataview.h └── random-forest │ ├── common-libraries.hpp │ ├── forest.hpp │ ├── node-gini.hpp │ ├── node.hpp │ └── tree.hpp ├── json └── json.hpp └── nanoflann └── nanoflann.hpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/README.md -------------------------------------------------------------------------------- /classifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/classifier.cpp -------------------------------------------------------------------------------- /classifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/classifier.hpp -------------------------------------------------------------------------------- /color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/color.cpp -------------------------------------------------------------------------------- /color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/color.hpp -------------------------------------------------------------------------------- /constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/constants.hpp -------------------------------------------------------------------------------- /features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/features.cpp -------------------------------------------------------------------------------- /features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/features.hpp -------------------------------------------------------------------------------- /gbm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/gbm.cpp -------------------------------------------------------------------------------- /gbm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/gbm.hpp -------------------------------------------------------------------------------- /labels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/labels.cpp -------------------------------------------------------------------------------- /labels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/labels.hpp -------------------------------------------------------------------------------- /pcclassify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/pcclassify.cpp -------------------------------------------------------------------------------- /pctrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/pctrain.cpp -------------------------------------------------------------------------------- /point_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/point_io.cpp -------------------------------------------------------------------------------- /point_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/point_io.hpp -------------------------------------------------------------------------------- /randomforest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/randomforest.cpp -------------------------------------------------------------------------------- /randomforest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/randomforest.hpp -------------------------------------------------------------------------------- /scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/scale.cpp -------------------------------------------------------------------------------- /scale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/scale.hpp -------------------------------------------------------------------------------- /statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/statistics.hpp -------------------------------------------------------------------------------- /vendor/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/cxxopts.hpp -------------------------------------------------------------------------------- /vendor/ethz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/LICENSE -------------------------------------------------------------------------------- /vendor/ethz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/README -------------------------------------------------------------------------------- /vendor/ethz/dataview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/dataview.h -------------------------------------------------------------------------------- /vendor/ethz/random-forest/common-libraries.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/random-forest/common-libraries.hpp -------------------------------------------------------------------------------- /vendor/ethz/random-forest/forest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/random-forest/forest.hpp -------------------------------------------------------------------------------- /vendor/ethz/random-forest/node-gini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/random-forest/node-gini.hpp -------------------------------------------------------------------------------- /vendor/ethz/random-forest/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/random-forest/node.hpp -------------------------------------------------------------------------------- /vendor/ethz/random-forest/tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/ethz/random-forest/tree.hpp -------------------------------------------------------------------------------- /vendor/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/json/json.hpp -------------------------------------------------------------------------------- /vendor/nanoflann/nanoflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uav4geo/OpenPointClass/HEAD/vendor/nanoflann/nanoflann.hpp --------------------------------------------------------------------------------