sample_maxima function

Point Cloud Decimation Algorithm

Point Cloud Decimation Algorithm

These functions are made to be used in decimate_points . They implement algorithms that create a grid with a given resolution and filters the point cloud by selecting the highest/lowest point within each cell.

highest(res = 1) lowest(res = 1)

Arguments

  • res: numeric. The resolution of the grid used to filter the point cloud

Examples

LASfile <- system.file("extdata", "Megaplot.laz", package="lidR") las = readLAS(LASfile, select = "xyz") # Select the highest point within each cell of an overlayed grid thinned = decimate_points(las, highest(4)) #plot(thinned) # Select the lowest point within each cell of an overlayed grid thinned = decimate_points(las, lowest(4)) #plot(thinned)

See Also

Other point cloud decimation algorithms: sample_homogenize, sample_per_voxel, sample_random

Other point cloud decimation algorithms: sample_homogenize, sample_per_voxel, sample_random

  • Maintainer: Jean-Romain Roussel
  • License: GPL-3
  • Last published: 2024-07-09