-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
Copy pathtest_moving_least_squares.cpp
249 lines (218 loc) · 9.25 KB
/
test_moving_least_squares.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2012-, Open Perception, Inc.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the copyright holder(s) nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* $Id: test_surface.cpp 6579 2012-07-27 18:57:32Z rusu $
*
*/
#include <pcl/test/gtest.h>
#include <pcl/point_types.h>
#include <pcl/io/pcd_io.h>
#include <pcl/io/vtk_io.h>
#include <pcl/features/normal_3d.h>
#include <pcl/surface/mls.h>
#include <pcl/common/common.h> // getMinMax3D
using namespace pcl;
using namespace pcl::io;
PointCloud<PointXYZ>::Ptr cloud (new PointCloud<PointXYZ>);
PointCloud<PointNormal>::Ptr cloud_with_normals (new PointCloud<PointNormal>);
search::KdTree<PointXYZ>::Ptr tree;
search::KdTree<PointNormal>::Ptr tree2;
// add by ktran to test update functions
PointCloud<PointXYZ>::Ptr cloud1 (new PointCloud<PointXYZ>);
PointCloud<PointNormal>::Ptr cloud_with_normals1 (new PointCloud<PointNormal>);
search::KdTree<PointXYZ>::Ptr tree3;
search::KdTree<PointNormal>::Ptr tree4;
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TEST (PCL, MovingLeastSquares)
{
// Init objects
PointCloud<PointXYZ> mls_points;
PointCloud<PointNormal>::Ptr mls_normals (new PointCloud<PointNormal> ());
MovingLeastSquares<PointXYZ, PointNormal> mls;
// Set parameters
mls.setInputCloud (cloud);
mls.setComputeNormals (true);
mls.setPolynomialOrder (2);
mls.setSearchMethod (tree);
mls.setSearchRadius (0.03);
// Reconstruct
mls.process (*mls_normals);
EXPECT_NEAR ((*mls_normals)[0].x, 0.005417, 1e-3);
EXPECT_NEAR ((*mls_normals)[0].y, 0.113463, 1e-3);
EXPECT_NEAR ((*mls_normals)[0].z, 0.040715, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[0].normal[0]), 0.111894, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[0].normal[1]), 0.594906, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[0].normal[2]), 0.795969, 1e-3);
EXPECT_NEAR ((*mls_normals)[0].curvature, 0.012019, 1e-3);
// Testing upsampling
MovingLeastSquares<PointXYZ, PointNormal> mls_upsampling;
// Set parameters
mls_upsampling.setInputCloud (cloud);
mls_upsampling.setComputeNormals (true);
mls_upsampling.setPolynomialOrder (2);
mls_upsampling.setSearchMethod (tree);
mls_upsampling.setSearchRadius (0.03);
mls_upsampling.setUpsamplingMethod (MovingLeastSquares<PointXYZ, PointNormal>::SAMPLE_LOCAL_PLANE);
mls_upsampling.setUpsamplingRadius (0.025);
mls_upsampling.setUpsamplingStepSize (0.01);
mls_normals->clear ();
mls_upsampling.process (*mls_normals);
EXPECT_NEAR ((*mls_normals)[10].x, -0.000538, 1e-3);
EXPECT_NEAR ((*mls_normals)[10].y, 0.110080, 1e-3);
EXPECT_NEAR ((*mls_normals)[10].z, 0.043602, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[10].normal[0]), 0.022678, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[10].normal[1]), 0.554978, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[10].normal[2]), 0.831556, 1e-3);
EXPECT_NEAR ((*mls_normals)[10].curvature, 0.012019, 1e-3);
EXPECT_EQ (mls_normals->size (), 6352);
/// TODO Would need to set a seed point here for the random number generator
/// But as long as the other 2 upsampling methods work fine, this should have no issues.
/// The RANDOM_UNIFORM_DENSITY upsampling will be changed soon anyway, hopefully in PCL 1.6.1
// mls_upsampling.setUpsamplingMethod (MovingLeastSquares<PointXYZ, PointNormal>::RANDOM_UNIFORM_DENSITY);
// mls_upsampling.setPointDensity (100);
// mls_normals->clear ();
// mls_upsampling.process (*mls_normals);
//
// EXPECT_NEAR ((*mls_normals)[10].x, 0.018806, 1e-3);
// EXPECT_NEAR ((*mls_normals)[10].y, 0.114685, 1e-3);
// EXPECT_NEAR ((*mls_normals)[10].z, 0.037500, 1e-3);
// EXPECT_NEAR (std::abs ((*mls_normals)[10].normal[0]), 0.351352, 1e-3);
// EXPECT_NEAR (std::abs ((*mls_normals)[10].normal[1]), 0.537741, 1e-3);
// EXPECT_NEAR (std::abs ((*mls_normals)[10].normal[2]), 0.766411, 1e-3);
// EXPECT_NEAR ((*mls_normals)[10].curvature, 0.019003, 1e-3);
// EXPECT_EQ (mls_normals->size (), 457);
constexpr float voxel_size = 0.005f;
constexpr int num_dilations = 5;
mls_upsampling.setUpsamplingMethod (MovingLeastSquares<PointXYZ, PointNormal>::VOXEL_GRID_DILATION);
mls_upsampling.setDilationIterations (num_dilations);
mls_upsampling.setDilationVoxelSize (voxel_size);
mls_normals->clear ();
mls_upsampling.process (*mls_normals);
EXPECT_NEAR ((*mls_normals)[10].x, -0.086348414421081543, 2e-3);
EXPECT_NEAR ((*mls_normals)[10].y, 0.080920584499835968, 2e-3);
EXPECT_NEAR ((*mls_normals)[10].z, 0.01788550429046154, 2e-3);
EXPECT_NEAR ((*mls_normals)[10].curvature, 0.107273, 1e-1);
EXPECT_NEAR (double (mls_normals->size ()), 25483, 2);
// Check the boundary
Eigen::Vector4f original_min_pt, original_max_pt, min_pt, max_pt;
pcl::getMinMax3D(*cloud, original_min_pt, original_max_pt);
pcl::getMinMax3D(*mls_normals, min_pt, max_pt);
EXPECT_TRUE(
(original_min_pt.array() - (num_dilations + 3) * voxel_size <= min_pt.array())
.all());
EXPECT_TRUE(
(max_pt.array() <= original_max_pt.array() + (num_dilations + 4) * voxel_size)
.all());
}
#ifdef _OPENMP
TEST (PCL, MovingLeastSquaresOMP)
{
// Init objects
PointCloud<PointXYZ> mls_points;
PointCloud<PointNormal>::Ptr mls_normals (new PointCloud<PointNormal> ());
MovingLeastSquares<PointXYZ, PointNormal> mls_omp;
// Set parameters
mls_omp.setInputCloud (cloud);
mls_omp.setComputeNormals (true);
mls_omp.setPolynomialOrder (2);
mls_omp.setSearchMethod (tree);
mls_omp.setSearchRadius (0.03);
mls_omp.setNumberOfThreads (4);
// Reconstruct
mls_omp.process (*mls_normals);
EXPECT_NEAR ((*mls_normals)[0].x, 0.005417, 1e-3);
EXPECT_NEAR ((*mls_normals)[0].y, 0.113463, 1e-3);
EXPECT_NEAR ((*mls_normals)[0].z, 0.040715, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[0].normal[0]), 0.111894, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[0].normal[1]), 0.594906, 1e-3);
EXPECT_NEAR (std::abs ((*mls_normals)[0].normal[2]), 0.795969, 1e-3);
EXPECT_NEAR ((*mls_normals)[0].curvature, 0.012019, 1e-3);
}
#endif
/* ---[ */
int
main (int argc, char** argv)
{
if (argc < 2)
{
std::cerr << "No test file given. Please download `bun0.pcd` and pass its path to the test." << std::endl;
return (-1);
}
// Load file
pcl::PCLPointCloud2 cloud_blob;
loadPCDFile (argv[1], cloud_blob);
fromPCLPointCloud2 (cloud_blob, *cloud);
// Create search tree
tree.reset (new search::KdTree<PointXYZ> (false));
tree->setInputCloud (cloud);
// Normal estimation
NormalEstimation<PointXYZ, Normal> n;
PointCloud<Normal>::Ptr normals (new PointCloud<Normal> ());
n.setInputCloud (cloud);
//n.setIndices (indices[B);
n.setSearchMethod (tree);
n.setKSearch (20);
n.compute (*normals);
// Concatenate XYZ and normal information
pcl::concatenateFields (*cloud, *normals, *cloud_with_normals);
// Create search tree
tree2.reset (new search::KdTree<PointNormal>);
tree2->setInputCloud (cloud_with_normals);
// Process for update cloud
if(argc == 3){
pcl::PCLPointCloud2 cloud_blob1;
loadPCDFile (argv[2], cloud_blob1);
fromPCLPointCloud2 (cloud_blob1, *cloud1);
// Create search tree
tree3.reset (new search::KdTree<PointXYZ> (false));
tree3->setInputCloud (cloud1);
// Normal estimation
NormalEstimation<PointXYZ, Normal> n1;
PointCloud<Normal>::Ptr normals1 (new PointCloud<Normal> ());
n1.setInputCloud (cloud1);
n1.setSearchMethod (tree3);
n1.setKSearch (20);
n1.compute (*normals1);
// Concatenate XYZ and normal information
pcl::concatenateFields (*cloud1, *normals1, *cloud_with_normals1);
// Create search tree
tree4.reset (new search::KdTree<PointNormal>);
tree4->setInputCloud (cloud_with_normals1);
}
// Testing
testing::InitGoogleTest (&argc, argv);
return (RUN_ALL_TESTS ());
}
/* ]--- */