Skip to main content
. 2021 Dec 12;21(24):8308. doi: 10.3390/s21248308
Algorithm 5. An algorithm for updating DPlane’s overlap
UpdateDPlaneOverlap(DPlane, PCD, r):
fore in DPlane.E
  if e.overlap_flag
    continue
  indices = GetPointNeighborhood(e, PCD, r)
  for idx in indices
    if CheckIdx(idx)
      DPlane.overlap ← DPlane.overlap + 1
      e.overlap_flag ← True
      break