-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
Copy pathtest_iterator.cpp
291 lines (257 loc) · 9.33 KB
/
test_iterator.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*
* Software License Agreement (BSD License)
*
* Copyright (c) 2010, Willow Garage, 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.
*
*/
#include <pcl/test/gtest.h>
#include <pcl/geometry/line_iterator.h>
#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include <cmath>
using namespace pcl;
template <typename PointT>
void checkSimpleLine8 (unsigned x_start, unsigned y_start, unsigned x_end, unsigned y_end, PointCloud<PointT>& cloud)
{
PointXYZ point;
point.x = point.y = point.z = 0.0f;
for (unsigned yIdx = 0; yIdx < cloud.height; ++yIdx)
{
for (unsigned xIdx = 0; xIdx < cloud.width; ++xIdx)
{
PointT& point = cloud.points [yIdx * cloud.width + xIdx];
point.x = static_cast<float>(xIdx);
point.y = static_cast<float>(yIdx);
point.z = 0.0f;
}
}
LineIterator lineIt (x_start, y_start, x_end, y_end, cloud.width, LineIterator::Neighbor8);
// use polymorphic
OrganizedIndexIterator& iterator = lineIt;
unsigned idx = 0;
while (iterator.isValid ())
{
PointT& point = cloud[*iterator];
EXPECT_EQ (point.x, iterator.getColumnIndex ());
EXPECT_EQ (point.y, iterator.getRowIndex ());
point.z = 1.0f;
++iterator;
++idx;
}
int dx = x_end - x_start;
int dy = y_end - y_start;
unsigned dmax = std::max (std::abs(dx), std::abs(dy));
EXPECT_EQ (dmax, idx);
int x_step = 0;
int y_step = 0;
EXPECT_GT (dmax, 0);
if (dx == 0)
{
x_step = 0;
y_step = (dy > 0) ? 1 : -1;
}
else if (dy == 0)
{
y_step = 0;
x_step = (dx > 0) ? 1 : -1;
}
else if (std::abs(dx) == std::abs(dy))
{
y_step = (dy > 0) ? 1 : -1;
x_step = (dx > 0) ? 1 : -1;
}
else
{
// only horizontal, vertical and 45deg diagonal lines handled here
EXPECT_TRUE (false);
}
unsigned xIdx = x_start;
unsigned yIdx = y_start;
for (unsigned idx = 0; idx < dmax; ++idx, xIdx += x_step, yIdx += y_step)
{
PointT& point = cloud.points [yIdx * cloud.width + xIdx];
EXPECT_EQ (point.z, 1.0f);
point.z = 0.0;
}
// now all z-values should be 0 again!
for (unsigned yIdx = 0; yIdx < cloud.height; ++yIdx)
{
for (unsigned xIdx = 0; xIdx < cloud.width; ++xIdx)
{
//std::cout << "testing point: " << xIdx << " , " << yIdx << std::endl;
PointT& point = cloud.points [yIdx * cloud.width + xIdx];
// if (point.z != 0.0f)
// std::cout << "point.z != 0.0f at: " << xIdx << " , " << yIdx << std::endl;
EXPECT_EQ (point.z, 0.0f);
}
}
}
template <typename PointT>
void checkGeneralLine (unsigned x_start, unsigned y_start, unsigned x_end, unsigned y_end, PointCloud<PointT>& cloud, bool neighorhood)
{
PointXYZ point;
point.x = point.y = point.z = 0.0f;
for (unsigned yIdx = 0; yIdx < cloud.height; ++yIdx)
{
for (unsigned xIdx = 0; xIdx < cloud.width; ++xIdx)
{
PointT& point = cloud.points [yIdx * cloud.width + xIdx];
point.x = static_cast<float>(xIdx);
point.y = static_cast<float>(yIdx);
point.z = 0.0f;
}
}
LineIterator::Neighborhood neighbors;
if (neighorhood)
neighbors = LineIterator::Neighbor8;
else
neighbors = LineIterator::Neighbor4;
LineIterator lineIt (x_start, y_start, x_end, y_end, cloud.width, neighbors);
// use polymorphic
OrganizedIndexIterator& iterator = lineIt;
unsigned idx = 0;
while (iterator.isValid ())
{
PointT& point = cloud [*iterator];
EXPECT_EQ (point.x, iterator.getColumnIndex ());
EXPECT_EQ (point.y, iterator.getRowIndex ());
//std::cout << idx << " :: " << iterator.getPointIndex () << " :: " << iterator.getColumnIndex () << " , " << iterator.getRowIndex () << std::endl;
point.z = 1.0f;
++iterator;
++idx;
}
int dx = x_end - x_start;
int dy = y_end - y_start;
unsigned dmax = std::max (std::abs(dx), std::abs(dy));
if (neighorhood)
EXPECT_EQ (dmax, idx);
else
EXPECT_EQ (std::abs(dx) + std::abs(dy), idx);
float length = std::sqrt (static_cast<float>(dx * dx + dy * dy));
float dir_x = static_cast<float>(dx) / length;
float dir_y = static_cast<float>(dy) / length;
// now all z-values should be 0 again!
for (int yIdx = 0; yIdx < static_cast<int>(cloud.height); ++yIdx)
{
for (int xIdx = 0; xIdx < static_cast<int>(cloud.width); ++xIdx)
{
PointT& point = cloud.points [yIdx * cloud.width + xIdx];
if (point.z != 0)
{
// point need to be close to line
float distance = dir_x * static_cast<float>(yIdx - static_cast<int>(y_start)) - dir_y * static_cast<float>(xIdx - static_cast<int>(x_start));
if (neighorhood)
EXPECT_LE (std::fabs(distance), 0.5f);
else
EXPECT_LE (std::fabs(distance), 0.70711f);
// and within the endpoints
float lambda = dir_y * static_cast<float>(yIdx - static_cast<int>(y_start)) + dir_x * static_cast<float>(xIdx - static_cast<int>(x_start));
EXPECT_LE (lambda, length);
EXPECT_GE (lambda, 0.0f);
}
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TEST (PCL, LineIterator8Neighbors)
{
PointCloud <PointXYZ> cloud;
cloud.width = 100;
cloud.height = 100;
cloud.resize (cloud.width * cloud.height);
unsigned center_x = 50;
unsigned center_y = 50;
unsigned length = 45;
// right
checkSimpleLine8 (center_x, center_y, center_x + length, center_y, cloud);
// left
checkSimpleLine8 (center_x, center_y, center_x - length, center_y, cloud);
// down
checkSimpleLine8 (center_x, center_y, center_x, center_y - length, cloud);
// up
checkSimpleLine8 (center_x, center_y, center_x, center_y + length, cloud);
// up-right
checkSimpleLine8 (center_x, center_y, center_x + length, center_y + length, cloud);
// up-left
checkSimpleLine8 (center_x, center_y, center_x - length, center_y + length, cloud);
// down-right
checkSimpleLine8 (center_x, center_y, center_x + length, center_y - length, cloud);
// down-left
checkSimpleLine8 (center_x, center_y, center_x - length, center_y - length, cloud);
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TEST (PCL, LineIterator8NeighborsGeneral)
{
PointCloud <PointXYZ> cloud;
cloud.width = 100;
cloud.height = 100;
cloud.resize (cloud.width * cloud.height);
unsigned center_x = 50;
unsigned center_y = 50;
unsigned length = 45;
constexpr unsigned angular_resolution = 180;
constexpr float d_alpha = static_cast<float>(M_PI / angular_resolution);
for (unsigned idx = 0; idx < angular_resolution; ++idx)
{
auto x_end = static_cast<unsigned>(length * std::cos (static_cast<float>(idx) * d_alpha) + center_x + 0.5);
auto y_end = static_cast<unsigned>(length * std::sin (static_cast<float>(idx) * d_alpha) + center_y + 0.5);
// right
checkGeneralLine (center_x, center_y, x_end, y_end, cloud, true);
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TEST (PCL, LineIterator4NeighborsGeneral)
{
PointCloud <PointXYZ> cloud;
cloud.width = 100;
cloud.height = 100;
cloud.resize (cloud.width * cloud.height);
unsigned center_x = 50;
unsigned center_y = 50;
unsigned length = 45;
constexpr unsigned angular_resolution = 360;
constexpr float d_alpha = static_cast<float>(2.0 * M_PI / angular_resolution);
for (unsigned idx = 0; idx < angular_resolution; ++idx)
{
auto x_end = static_cast<unsigned>(length * std::cos (static_cast<float>(idx) * d_alpha) + center_x + 0.5);
auto y_end = static_cast<unsigned>(length * std::sin (static_cast<float>(idx) * d_alpha) + center_y + 0.5);
// right
checkGeneralLine (center_x, center_y, x_end, y_end, cloud, false);
}
}
//* ---[ */
int
main (int argc, char** argv)
{
testing::InitGoogleTest (&argc, argv);
return (RUN_ALL_TESTS ());
}
/* ]--- */