gnd_pmf function

Ground Segmentation Algorithm

Ground Segmentation Algorithm

This function is made to be used in classify_ground . It implements an algorithm for segmentation of ground points based on a progressive morphological filter. This method is an implementation of the Zhang et al. (2003) algorithm (see reference). Note that this is not a strict implementation of Zhang et al. This algorithm works at the point cloud level without any rasterization process. The morphological operator is applied on the point cloud, not on a raster. Also, Zhang et al. proposed some formulas (eq. 4, 5 and 7) to compute the sequence of windows sizes and thresholds. Here, these parameters are free and specified by the user. The function util_makeZhangParam

enables computation of the parameters according to the original paper.

pmf(ws, th) util_makeZhangParam( b = 2, dh0 = 0.5, dhmax = 3, s = 1, max_ws = 20, exp = FALSE )

Arguments

  • ws: numeric. Sequence of windows sizes to be used in filtering ground returns. The values must be positive and in the same units as the point cloud (usually meters, occasionally feet).
  • th: numeric. Sequence of threshold heights above the parameterized ground surface to be considered a ground return. The values must be positive and in the same units as the point cloud.
  • b: numeric. This is the parameter bb in Zhang et al. (2003) (eq. 4 and 5).
  • dh0: numeric. This is dh0dh_0 in Zhang et al. (2003) (eq. 7).
  • dhmax: numeric. This is dhmaxdh_{max} in Zhang et al. (2003) (eq. 7).
  • s: numeric. This is ss in Zhang et al. (2003) (eq. 7).
  • max_ws: numeric. Maximum window size to be used in filtering ground returns. This limits the number of windows created.
  • exp: logical. The window size can be increased linearly or exponentially (eq. 4 or 5).

Details

The progressive morphological filter allows for any sequence of parameters. The util_makeZhangParam function enables computation of the sequences using equations (4), (5) and (7) from Zhang et al. (see reference and details).

In the original paper the windows size sequence is given by eq. 4 or 5:

wk=2kb+1w_k = 2kb + 1

or

wk=2bk+1w_k = 2b^k + 1

In the original paper the threshold sequence is given by eq. 7:

thk=s(wkwk1)c+th0th_k = s*(w_k - w_{k-1})*c + th_0

Because the function classify_ground applies the morphological operation at the point cloud level the parameter cc is set to 1 and cannot be modified.

Examples

LASfile <- system.file("extdata", "Topography.laz", package="lidR") las <- readLAS(LASfile, select = "xyzrn", filter = "-inside 273450 5274350 273550 5274450") ws <- seq(3,12, 3) th <- seq(0.1, 1.5, length.out = length(ws)) las <- classify_ground(las, pmf(ws, th)) #plot(las, color = "Classification")

References

Zhang, K., Chen, S. C., Whitman, D., Shyu, M. L., Yan, J., & Zhang, C. (2003). A progressive morphological filter for removing nonground measurements from airborne LIDAR data. IEEE Transactions on Geoscience and Remote Sensing, 41(4 PART I), 872–882. http:#doi.org/10.1109/TGRS.2003.810682.

See Also

Other ground segmentation algorithms: gnd_csf, gnd_mcc

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