├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── codechecker_skip.lst ├── .idea ├── .gitignore ├── CloudTools.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── misc.xml └── vcs.xml ├── AHN.Buildings.Aggregate ├── CMakeLists.txt ├── Region.h └── main.cpp ├── AHN.Buildings.MPI ├── CMakeLists.txt └── main.cpp ├── AHN.Buildings.Parallel ├── CMakeLists.txt └── main.cpp ├── AHN.Buildings.Verify ├── CMakeLists.txt ├── Coverage.h └── main.cpp ├── AHN.Buildings ├── BuildingChangeDetection.hpp ├── BuildingExtraction.cpp ├── BuildingExtraction.h ├── CMakeLists.txt ├── Comparison.cpp ├── Comparison.h ├── ContourClassification.cpp ├── ContourClassification.h ├── ContourConvexHullRasterizer.cpp ├── ContourConvexHullRasterizer.h ├── ContourDetection.cpp ├── ContourDetection.h ├── ContourFiltering.cpp ├── ContourFiltering.h ├── ContourSimplification.cpp ├── ContourSimplification.h ├── ContourSplitting.cpp ├── ContourSplitting.h ├── IOMode.cpp ├── IOMode.h ├── Process.cpp ├── Process.h └── main.cpp ├── BUILD.md ├── CMakeLists.txt ├── CMakeSettings.json.sample ├── CONTRIBUTING.md ├── CloudTools.Common ├── CMakeLists.txt ├── Helper.h ├── IO │ ├── IO.cpp │ ├── IO.h │ ├── Reporter.cpp │ ├── Reporter.h │ ├── Result.cpp │ ├── Result.h │ ├── ResultCollection.cpp │ └── ResultCollection.h ├── Operation.cpp └── Operation.h ├── CloudTools.DEM.Difference ├── CMakeLists.txt └── main.cpp ├── CloudTools.DEM.Mask ├── CMakeLists.txt └── main.cpp ├── CloudTools.DEM ├── Algorithms │ ├── HierachicalClustering.hpp │ ├── MatrixTransformation.cpp │ └── MatrixTransformation.h ├── CMakeLists.txt ├── Calculation.cpp ├── Calculation.h ├── ClusterMap.cpp ├── ClusterMap.h ├── Color.cpp ├── Color.h ├── Comparers │ └── Difference.hpp ├── Creation.cpp ├── Creation.h ├── DatasetCalculation.hpp ├── DatasetTransformation.hpp ├── Filters │ ├── ClusterFilter.hpp │ ├── MajorityFilter.hpp │ ├── MorphologyFilter.hpp │ └── NoiseFilter.hpp ├── Helper.cpp ├── Helper.h ├── Metadata.cpp ├── Metadata.h ├── Rasterize.cpp ├── Rasterize.h ├── SweepLineCalculation.hpp ├── SweepLineTransformation.hpp ├── Transformation.cpp ├── Transformation.h └── Window.hpp ├── CloudTools.Vegetation.Verify ├── CMakeLists.txt └── main.cpp ├── CloudTools.Vegetation ├── BuildingFacadeSeedRemoval.hpp ├── CMakeLists.txt ├── CentroidDistance.cpp ├── CentroidDistance.h ├── DistanceCalculation.h ├── EliminateNonTrees.cpp ├── EliminateNonTrees.h ├── HausdorffDistance.cpp ├── HausdorffDistance.h ├── HeightDifference.cpp ├── HeightDifference.h ├── InterpolateNoData.cpp ├── InterpolateNoData.h ├── MorphologyClusterFilter.cpp ├── MorphologyClusterFilter.h ├── NoiseFilter.cpp ├── NoiseFilter.h ├── PostProcess.cpp ├── PostProcess.h ├── PreProcess.cpp ├── PreProcess.h ├── RiverMask.hpp ├── TreeCrownSegmentation.cpp ├── TreeCrownSegmentation.h ├── VolumeDifference.cpp ├── VolumeDifference.h └── main.cpp ├── Folder.DotSettings ├── LICENSE ├── README.md ├── Shell.bat ├── Shell.config.cmd.sample ├── WINDOWS_QUICK_START.md └── doc ├── UML_Buildings_Model.png ├── UML_Operation_Model.png ├── UML_Vegetation_Model.png ├── screenshot_building_small.png └── screenshot_vegetation_small.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/codechecker_skip.lst: -------------------------------------------------------------------------------- 1 | -/usr/* -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/CloudTools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.idea/CloudTools.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AHN.Buildings.Aggregate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Aggregate/CMakeLists.txt -------------------------------------------------------------------------------- /AHN.Buildings.Aggregate/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Aggregate/Region.h -------------------------------------------------------------------------------- /AHN.Buildings.Aggregate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Aggregate/main.cpp -------------------------------------------------------------------------------- /AHN.Buildings.MPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.MPI/CMakeLists.txt -------------------------------------------------------------------------------- /AHN.Buildings.MPI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.MPI/main.cpp -------------------------------------------------------------------------------- /AHN.Buildings.Parallel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Parallel/CMakeLists.txt -------------------------------------------------------------------------------- /AHN.Buildings.Parallel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Parallel/main.cpp -------------------------------------------------------------------------------- /AHN.Buildings.Verify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Verify/CMakeLists.txt -------------------------------------------------------------------------------- /AHN.Buildings.Verify/Coverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Verify/Coverage.h -------------------------------------------------------------------------------- /AHN.Buildings.Verify/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings.Verify/main.cpp -------------------------------------------------------------------------------- /AHN.Buildings/BuildingChangeDetection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/BuildingChangeDetection.hpp -------------------------------------------------------------------------------- /AHN.Buildings/BuildingExtraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/BuildingExtraction.cpp -------------------------------------------------------------------------------- /AHN.Buildings/BuildingExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/BuildingExtraction.h -------------------------------------------------------------------------------- /AHN.Buildings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/CMakeLists.txt -------------------------------------------------------------------------------- /AHN.Buildings/Comparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/Comparison.cpp -------------------------------------------------------------------------------- /AHN.Buildings/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/Comparison.h -------------------------------------------------------------------------------- /AHN.Buildings/ContourClassification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourClassification.cpp -------------------------------------------------------------------------------- /AHN.Buildings/ContourClassification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourClassification.h -------------------------------------------------------------------------------- /AHN.Buildings/ContourConvexHullRasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourConvexHullRasterizer.cpp -------------------------------------------------------------------------------- /AHN.Buildings/ContourConvexHullRasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourConvexHullRasterizer.h -------------------------------------------------------------------------------- /AHN.Buildings/ContourDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourDetection.cpp -------------------------------------------------------------------------------- /AHN.Buildings/ContourDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourDetection.h -------------------------------------------------------------------------------- /AHN.Buildings/ContourFiltering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourFiltering.cpp -------------------------------------------------------------------------------- /AHN.Buildings/ContourFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourFiltering.h -------------------------------------------------------------------------------- /AHN.Buildings/ContourSimplification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourSimplification.cpp -------------------------------------------------------------------------------- /AHN.Buildings/ContourSimplification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourSimplification.h -------------------------------------------------------------------------------- /AHN.Buildings/ContourSplitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourSplitting.cpp -------------------------------------------------------------------------------- /AHN.Buildings/ContourSplitting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/ContourSplitting.h -------------------------------------------------------------------------------- /AHN.Buildings/IOMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/IOMode.cpp -------------------------------------------------------------------------------- /AHN.Buildings/IOMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/IOMode.h -------------------------------------------------------------------------------- /AHN.Buildings/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/Process.cpp -------------------------------------------------------------------------------- /AHN.Buildings/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/Process.h -------------------------------------------------------------------------------- /AHN.Buildings/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/AHN.Buildings/main.cpp -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/BUILD.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CMakeSettings.json.sample -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CloudTools.Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/CMakeLists.txt -------------------------------------------------------------------------------- /CloudTools.Common/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/Helper.h -------------------------------------------------------------------------------- /CloudTools.Common/IO/IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/IO.cpp -------------------------------------------------------------------------------- /CloudTools.Common/IO/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/IO.h -------------------------------------------------------------------------------- /CloudTools.Common/IO/Reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/Reporter.cpp -------------------------------------------------------------------------------- /CloudTools.Common/IO/Reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/Reporter.h -------------------------------------------------------------------------------- /CloudTools.Common/IO/Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/Result.cpp -------------------------------------------------------------------------------- /CloudTools.Common/IO/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/Result.h -------------------------------------------------------------------------------- /CloudTools.Common/IO/ResultCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/ResultCollection.cpp -------------------------------------------------------------------------------- /CloudTools.Common/IO/ResultCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/IO/ResultCollection.h -------------------------------------------------------------------------------- /CloudTools.Common/Operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/Operation.cpp -------------------------------------------------------------------------------- /CloudTools.Common/Operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Common/Operation.h -------------------------------------------------------------------------------- /CloudTools.DEM.Difference/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM.Difference/CMakeLists.txt -------------------------------------------------------------------------------- /CloudTools.DEM.Difference/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM.Difference/main.cpp -------------------------------------------------------------------------------- /CloudTools.DEM.Mask/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM.Mask/CMakeLists.txt -------------------------------------------------------------------------------- /CloudTools.DEM.Mask/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM.Mask/main.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Algorithms/HierachicalClustering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Algorithms/HierachicalClustering.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Algorithms/MatrixTransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Algorithms/MatrixTransformation.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Algorithms/MatrixTransformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Algorithms/MatrixTransformation.h -------------------------------------------------------------------------------- /CloudTools.DEM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/CMakeLists.txt -------------------------------------------------------------------------------- /CloudTools.DEM/Calculation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Calculation.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Calculation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Calculation.h -------------------------------------------------------------------------------- /CloudTools.DEM/ClusterMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/ClusterMap.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/ClusterMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/ClusterMap.h -------------------------------------------------------------------------------- /CloudTools.DEM/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Color.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Color.h -------------------------------------------------------------------------------- /CloudTools.DEM/Comparers/Difference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Comparers/Difference.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Creation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Creation.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Creation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Creation.h -------------------------------------------------------------------------------- /CloudTools.DEM/DatasetCalculation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/DatasetCalculation.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/DatasetTransformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/DatasetTransformation.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Filters/ClusterFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Filters/ClusterFilter.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Filters/MajorityFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Filters/MajorityFilter.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Filters/MorphologyFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Filters/MorphologyFilter.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Filters/NoiseFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Filters/NoiseFilter.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Helper.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Helper.h -------------------------------------------------------------------------------- /CloudTools.DEM/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Metadata.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Metadata.h -------------------------------------------------------------------------------- /CloudTools.DEM/Rasterize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Rasterize.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Rasterize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Rasterize.h -------------------------------------------------------------------------------- /CloudTools.DEM/SweepLineCalculation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/SweepLineCalculation.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/SweepLineTransformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/SweepLineTransformation.hpp -------------------------------------------------------------------------------- /CloudTools.DEM/Transformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Transformation.cpp -------------------------------------------------------------------------------- /CloudTools.DEM/Transformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Transformation.h -------------------------------------------------------------------------------- /CloudTools.DEM/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.DEM/Window.hpp -------------------------------------------------------------------------------- /CloudTools.Vegetation.Verify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation.Verify/CMakeLists.txt -------------------------------------------------------------------------------- /CloudTools.Vegetation.Verify/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation.Verify/main.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/BuildingFacadeSeedRemoval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/BuildingFacadeSeedRemoval.hpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/CMakeLists.txt -------------------------------------------------------------------------------- /CloudTools.Vegetation/CentroidDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/CentroidDistance.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/CentroidDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/CentroidDistance.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/DistanceCalculation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/DistanceCalculation.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/EliminateNonTrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/EliminateNonTrees.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/EliminateNonTrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/EliminateNonTrees.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/HausdorffDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/HausdorffDistance.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/HausdorffDistance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/HausdorffDistance.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/HeightDifference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/HeightDifference.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/HeightDifference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/HeightDifference.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/InterpolateNoData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/InterpolateNoData.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/InterpolateNoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/InterpolateNoData.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/MorphologyClusterFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/MorphologyClusterFilter.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/MorphologyClusterFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/MorphologyClusterFilter.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/NoiseFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/NoiseFilter.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/NoiseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/NoiseFilter.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/PostProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/PostProcess.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/PostProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/PostProcess.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/PreProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/PreProcess.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/PreProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/PreProcess.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/RiverMask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/RiverMask.hpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/TreeCrownSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/TreeCrownSegmentation.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/TreeCrownSegmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/TreeCrownSegmentation.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/VolumeDifference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/VolumeDifference.cpp -------------------------------------------------------------------------------- /CloudTools.Vegetation/VolumeDifference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/VolumeDifference.h -------------------------------------------------------------------------------- /CloudTools.Vegetation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/CloudTools.Vegetation/main.cpp -------------------------------------------------------------------------------- /Folder.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/Folder.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/README.md -------------------------------------------------------------------------------- /Shell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/Shell.bat -------------------------------------------------------------------------------- /Shell.config.cmd.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/Shell.config.cmd.sample -------------------------------------------------------------------------------- /WINDOWS_QUICK_START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/WINDOWS_QUICK_START.md -------------------------------------------------------------------------------- /doc/UML_Buildings_Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/doc/UML_Buildings_Model.png -------------------------------------------------------------------------------- /doc/UML_Operation_Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/doc/UML_Operation_Model.png -------------------------------------------------------------------------------- /doc/UML_Vegetation_Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/doc/UML_Vegetation_Model.png -------------------------------------------------------------------------------- /doc/screenshot_building_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/doc/screenshot_building_small.png -------------------------------------------------------------------------------- /doc/screenshot_vegetation_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GISLab-ELTE/PointCloudTools/HEAD/doc/screenshot_vegetation_small.png --------------------------------------------------------------------------------