-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#DecimatePoints | ||
Decimate point clouds to produce smaller LAS files. | ||
|
||
###Decimate Point Cloud Notes | ||
- Decimation options are available in the batch file. | ||
1. "fiters.decimation" will save every *n*th point. | ||
2. "filters.voxelcenternearestneighbor" will save the nearest neighbor to the voxel center. | ||
3. "filters.voxelcentroidnearestneighbor" will save the nearest neighbor to the points' centroid. | ||
4. "filters.sample" will perform Poisson sampling to determine which points to save. |