-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathopenni_uniform_sampling.cpp
More file actions
197 lines (171 loc) · 7.07 KB
/
openni_uniform_sampling.cpp
File metadata and controls
197 lines (171 loc) · 7.07 KB
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
/*
* Software License Agreement (BSD License)
*
* Copyright (c) 2011, 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 Willow Garage, Inc. 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/common/time.h>
#include <pcl/console/parse.h>
#include <pcl/filters/uniform_sampling.h>
#include <pcl/io/openni_camera/openni_driver.h>
#include <pcl/io/openni_grabber.h>
#include <pcl/visualization/cloud_viewer.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <mutex>
#include <thread>
using namespace std::chrono_literals;
// clang-format off
#define FPS_CALC(_WHAT_) \
do { \
static unsigned count = 0; \
static double last = pcl::getTime(); \
double now = pcl::getTime(); \
++count; \
if (now - last >= 1.0) { \
std::cout << "Average framerate(" << _WHAT_ << "): " \
<< double(count) / double(now - last) << " Hz" << std::endl; \
count = 0; \
last = now; \
} \
} while (false)
// clang-format on
class OpenNIUniformSampling {
public:
using Cloud = pcl::PointCloud<pcl::PointXYZRGBA>;
using CloudPtr = Cloud::Ptr;
using CloudConstPtr = Cloud::ConstPtr;
OpenNIUniformSampling(const std::string& device_id = "", float leaf_size = 0.05)
: viewer("PCL OpenNI PassThrough Viewer"), device_id_(device_id)
{
pass_.setRadiusSearch(leaf_size);
}
void
cloud_cb_(const CloudConstPtr& cloud)
{
std::lock_guard<std::mutex> lock(mtx_);
FPS_CALC("computation");
cloud_.reset(new Cloud);
keypoints_.reset(new pcl::PointCloud<pcl::PointXYZ>);
// Computation goes here
pass_.setInputCloud(cloud);
pcl::PointCloud<pcl::PointXYZRGBA> sampled;
pass_.filter(sampled);
*cloud_ = *cloud;
pcl::copyPointCloud(sampled, *keypoints_);
}
void
viz_cb(pcl::visualization::PCLVisualizer& viz)
{
std::lock_guard<std::mutex> lock(mtx_);
if (!keypoints_ && !cloud_) {
std::this_thread::sleep_for(1s);
return;
}
FPS_CALC("visualization");
viz.removePointCloud("raw");
pcl::visualization::PointCloudColorHandlerRGBField<pcl::PointXYZRGBA> color_handler(
cloud_);
viz.addPointCloud<pcl::PointXYZRGBA>(cloud_, color_handler, "raw");
if (!viz.updatePointCloud<pcl::PointXYZ>(keypoints_, "keypoints")) {
viz.addPointCloud<pcl::PointXYZ>(keypoints_, "keypoints");
viz.setPointCloudRenderingProperties(
pcl::visualization::RenderingProperties::PCL_VISUALIZER_POINT_SIZE,
5.0,
"keypoints");
viz.resetCameraViewpoint("keypoints");
}
}
void
run()
{
pcl::OpenNIGrabber interface(device_id_);
std::function<void(const CloudConstPtr&)> f = [this](const CloudConstPtr& cloud) {
cloud_cb_(cloud);
};
boost::signals2::connection c = interface.registerCallback(f);
viewer.runOnVisualizationThread(
[this](pcl::visualization::PCLVisualizer& viz) { viz_cb(viz); }, "viz_cb");
interface.start();
while (!viewer.wasStopped()) {
std::this_thread::sleep_for(1s);
}
interface.stop();
}
pcl::UniformSampling<pcl::PointXYZRGBA> pass_;
pcl::visualization::CloudViewer viewer;
std::string device_id_;
std::mutex mtx_;
CloudPtr cloud_;
pcl::PointCloud<pcl::PointXYZ>::Ptr keypoints_;
};
void
usage(char** argv)
{
std::cout << "usage: " << argv[0] << " <device_id> <options>\n\n"
<< "where options are:\n"
<< " -leaf X :: set the UniformSampling leaf "
"size (default: 0.01)\n";
openni_wrapper::OpenNIDriver& driver = openni_wrapper::OpenNIDriver::getInstance();
if (driver.getNumberDevices() > 0) {
for (unsigned deviceIdx = 0; deviceIdx < driver.getNumberDevices(); ++deviceIdx) {
// clang-format off
std::cout << "Device: " << deviceIdx + 1 << ", vendor: " << driver.getVendorName (deviceIdx) << ", product: " << driver.getProductName (deviceIdx)
<< ", connected: " << driver.getBus (deviceIdx) << " @ " << driver.getAddress (deviceIdx) << ", serial number: \'" << driver.getSerialNumber (deviceIdx) << "\'" << std::endl;
std::cout << "device_id may be #1, #2, ... for the first second etc device in the list or" << std::endl
<< " bus@address for the device connected to a specific usb-bus / address combination (works only in Linux) or" << std::endl
<< " <serial-number> (only in Linux and for devices which provide serial numbers)" << std::endl;
// clang-format on
}
}
else
std::cout << "No devices connected." << std::endl;
}
int
main(int argc, char** argv)
{
if (argc < 2) {
usage(argv);
return 1;
}
std::string arg(argv[1]);
if (arg == "--help" || arg == "-h") {
usage(argv);
return 1;
}
float leaf_res = 0.05f;
pcl::console::parse_argument(argc, argv, "-leaf", leaf_res);
PCL_INFO("Using %f as a leaf size for UniformSampling.\n", leaf_res);
pcl::OpenNIGrabber grabber(arg);
OpenNIUniformSampling v(arg, leaf_res);
v.run();
return 0;
}