Codes
I will open source processing tools for point cloud data via my GitHub repository.
GitHub
Open source projects
1. Individual tree delineation from 3D point clouds
This project implements a lightweight and easy-to-use point-based method for individual tree delineation from 3D point cloud data using pure C/C++.
1
2
3
4
5
6
7
//Parameter settings
const double radius = 1.0;
//Searching Radius, 1.0 meter;
const double verticalResolution = 1.0;
//Vertical resolution of the layers, 1.0 meter;
const int miniPtsPerCluster = 5;
// Minimum number of points per cluster, 5 points;