|
Algorithm 1. Optimized Boundary Extraction Method |
Input: Source point cloud S Output: Boundary point cloud T without outliers
-
1
VVoxel Down-sampling S
-
2
for each point in V, do
-
3
-
4
-
5
,
-
6
Boundary identification
-
7
Add boundary points into R
-
8
end
-
9
Zradius search for each point in R
-
10
for each point in Z do
-
11
Search for the k-nearest points: ,
-
12
-
13
end
-
14
-
15
-
16
for each point in Z, do
-
17
if
then
-
18
continue
-
19
end
-
20
Boundary identification
-
21
Add boundary points into T
-
22
end
|