-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
Copy pathtest_polygon_mesh.cpp
226 lines (185 loc) · 6.31 KB
/
test_polygon_mesh.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
/*
* Software License Agreement (BSD License)
*
* Point Cloud Library (PCL) - www.pointclouds.org
* Copyright (c) 2009-2012, Willow Garage, Inc.
* 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$
*
*/
#include <vector>
#include <pcl/test/gtest.h>
#include <pcl/geometry/polygon_mesh.h>
#include "test_mesh_common_functions.h"
#include <type_traits>
////////////////////////////////////////////////////////////////////////////////
using VertexIndex = pcl::geometry::VertexIndex;
using HalfEdgeIndex = pcl::geometry::HalfEdgeIndex;
using EdgeIndex = pcl::geometry::EdgeIndex;
using FaceIndex = pcl::geometry::FaceIndex;
using VertexIndices = std::vector<VertexIndex>;
using HalfEdgeIndices = std::vector<HalfEdgeIndex>;
using FaceIndices = std::vector<FaceIndex>;
template <bool IsManifoldT>
struct MeshTraits
{
using VertexData = int;
using HalfEdgeData = pcl::geometry::NoData;
using EdgeData = pcl::geometry::NoData;
using FaceData = pcl::geometry::NoData;
using IsManifold = std::integral_constant <bool, IsManifoldT>;
};
using ManifoldPolygonMesh = pcl::geometry::PolygonMesh<MeshTraits<true> >;
using NonManifoldPolygonMesh = pcl::geometry::PolygonMesh<MeshTraits<false> >;
using PolygonMeshTypes = testing::Types <ManifoldPolygonMesh, NonManifoldPolygonMesh>;
template <class MeshT>
class TestPolygonMesh : public testing::Test
{
protected:
using Mesh = MeshT;
};
TYPED_TEST_SUITE (TestPolygonMesh, PolygonMeshTypes);
////////////////////////////////////////////////////////////////////////////////
TYPED_TEST (TestPolygonMesh, CorrectMeshTag)
{
using Mesh = typename TestFixture::Mesh;
using MeshTag = typename Mesh::MeshTag;
ASSERT_EQ (typeid (pcl::geometry::PolygonMeshTag), typeid (MeshTag));
}
////////////////////////////////////////////////////////////////////////////////
// NOTE: It is the responsibility of the user to ensure that all vertex indices are valid.
//TYPED_TEST (TestPolygonMesh, OutOfRange)
//{
// using Mesh = typename TestFixture::Mesh;
// Mesh mesh;
// VertexIndices vi;
// for (unsigned int i=0; i<3; ++i)
// {
// vi.push_back (VertexIndex (i));
// }
// EXPECT_FALSE (mesh.addFace (vi).isValid ());
// mesh.addVertex (0);
// EXPECT_FALSE (mesh.addFace (vi).isValid ());
// mesh.addVertex (1);
// EXPECT_FALSE (mesh.addFace (vi).isValid ());
// mesh.addVertex (2);
// EXPECT_TRUE (mesh.addFace (vi).isValid ());
//}
////////////////////////////////////////////////////////////////////////////////
TYPED_TEST (TestPolygonMesh, CorrectNumberOfVertices)
{
// Make sure that only quads can be added
using Mesh = typename TestFixture::Mesh;
for (unsigned int n=1; n<=5; ++n)
{
Mesh mesh;
VertexIndices vi;
for (unsigned int i=0; i<n; ++i)
{
vi.emplace_back(i);
mesh.addVertex (i);
}
const FaceIndex index = mesh.addFace (vi);
if (n>=3) EXPECT_TRUE (index.isValid ()) << "Number of vertices in the face: " << n;
else EXPECT_FALSE (index.isValid ()) << "Number of vertices in the face: " << n;
}
}
////////////////////////////////////////////////////////////////////////////////
TYPED_TEST (TestPolygonMesh, ThreePolygons)
{
using Mesh = typename TestFixture::Mesh;
// 1 - 6 //
// / \ \ //
// 2 - 0 5 //
// \ \ / //
// 3 - 4 //
Mesh mesh;
for (unsigned int i=0; i<7; ++i) mesh.addVertex (i);
std::vector <VertexIndices> faces;
VertexIndices vi;
vi.emplace_back(0);
vi.emplace_back(1);
vi.emplace_back(2);
faces.push_back (vi);
vi.clear ();
vi.emplace_back(0);
vi.emplace_back(2);
vi.emplace_back(3);
vi.emplace_back(4);
faces.push_back (vi);
vi.clear ();
vi.emplace_back(0);
vi.emplace_back(4);
vi.emplace_back(5);
vi.emplace_back(6);
vi.emplace_back(1);
faces.push_back (vi);
vi.clear ();
for (const auto &face : faces)
{
ASSERT_TRUE (mesh.addFace (face).isValid ());
}
ASSERT_TRUE (hasFaces (mesh, faces));
mesh.deleteFace (FaceIndex (1));
mesh.cleanUp ();
std::vector <std::vector <int> > expected;
std::vector <int> tmp;
tmp.push_back (0);
tmp.push_back (1);
tmp.push_back (2);
expected.push_back (tmp);
tmp.clear ();
tmp.push_back (0);
tmp.push_back (4);
tmp.push_back (5);
tmp.push_back (6);
tmp.push_back (1);
expected.push_back (tmp);
tmp.clear ();
ASSERT_TRUE (hasFaces (mesh, expected));
std::vector <int> expected_boundary;
expected_boundary.push_back (2);
expected_boundary.push_back (1);
expected_boundary.push_back (6);
expected_boundary.push_back (5);
expected_boundary.push_back (4);
expected_boundary.push_back (0);
ASSERT_EQ (expected_boundary, getBoundaryVertices (mesh, 0));
}
////////////////////////////////////////////////////////////////////////////////
int
main (int argc, char** argv)
{
testing::InitGoogleTest (&argc, argv);
return (RUN_ALL_TESTS ());
}