forked from giacomodabisias/libfreenect2pclgrabber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk2g.h
219 lines (177 loc) · 5.75 KB
/
k2g.h
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
/*
Copyright 2015, Giacomo Dabisias"
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
@Author
Giacomo. Dabisias, PhD Student
PERCRO, (Laboratory of Perceptual Robotics)
Scuola Superiore Sant'Anna
via Luigi Alamanni 13D, San Giuliano Terme 56010 (PI), Italy
*/
#include <string>
#include <libfreenect2/libfreenect2.hpp>
#include <libfreenect2/frame_listener_impl.h>
#include <libfreenect2/packet_pipeline.h>
#include <libfreenect2/registration.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/io/grabber.h>
#include <opencv2/opencv.hpp>
#include <signal.h>
#include <iostream>
#include <Eigen/Core>
bool stop = false;
enum processor{
CPU, OPENCL, OPENGL
};
void sigint_handler(int s)
{
stop = true;
}
class K2G : public pcl::Grabber {
public:
K2G(processor p): undistorted_(512, 424, 4), registered_(512, 424, 4), listener_(libfreenect2::Frame::Color | libfreenect2::Frame::Ir | libfreenect2::Frame::Depth){
signal(SIGINT,sigint_handler);
if(freenect2_.enumerateDevices() == 0)
{
std::cout << "no kinect2 connected!" << std::endl;
exit(-1);
}
serial_ = freenect2_.getDefaultDeviceSerialNumber();
switch(p){
case CPU:
std::cout << "creating CPU processor" << std::endl;
pipeline_ = new libfreenect2::CpuPacketPipeline();
break;
case OPENCL:
std::cout << "creating OpenCL processor" << std::endl;
pipeline_ = new libfreenect2::OpenCLPacketPipeline();
break;
case OPENGL:
std::cout << "creating OpenGL processor" << std::endl;
pipeline_ = new libfreenect2::OpenGLPacketPipeline();
break;
default:
std::cout << "creating CPU processor" << std::endl;
pipeline_ = new libfreenect2::CpuPacketPipeline();
break;
}
dev_ = freenect2_.openDevice(serial_, pipeline_);
dev_->setColorFrameListener(&listener_);
dev_->setIrAndDepthFrameListener(&listener_);
dev_->start();
registration_ = new libfreenect2::Registration(dev_->getIrCameraParams(), dev_->getColorCameraParams());
d_matrix_ = Eigen::Matrix4d::Identity();
d_matrix_(0,0) = dev_->getIrCameraParams().fx;
d_matrix_(0,2) = dev_->getIrCameraParams().cx;
d_matrix_(1,1) = dev_->getIrCameraParams().fy;
d_matrix_(1,2) = dev_->getIrCameraParams().cy;
d_matrix_inv_ = d_matrix_.inverse();
std::cout << "Camera matrix:" << std::endl;
std::cout << d_matrix_ << std::endl;
}
~K2G() throw() {
//pcl::~Grabber();
stop();
delete dev_;
delete pipeline_;
delete registration_;
}
void start(){
//TODO: move device init here. Not replaced yet for compatibility.
}
void stop(){
shutDown();
//TODO: rename shutDown() as stop(). Not replaced yet for compatibility.
}
bool providesCallback(){
return false;
}
std::string getName() const{
return "K2G";
}
bool isRunning() const{
return true;
}
float getFramesPerSecond() const{
return -1;
}
/*
void addCallback(std::function f){
callbacks_.push_back(f);
}*/
libfreenect2::Freenect2Device::IrCameraParams getIrParameters(){
libfreenect2::Freenect2Device::IrCameraParams ir = dev_->getIrCameraParams();
return ir;
}
libfreenect2::Freenect2Device::ColorCameraParams getRgbParameters(){
libfreenect2::Freenect2Device::ColorCameraParams rgb = dev_->getColorCameraParams();
return rgb;
}
pcl::PointCloud<pcl::PointXYZRGB>::Ptr getCloud(){
listener_.waitForNewFrame(frames_);
libfreenect2::Frame * rgb = frames_[libfreenect2::Frame::Color];
libfreenect2::Frame * depth = frames_[libfreenect2::Frame::Depth];
registration_->apply(rgb, depth, &undistorted_, ®istered_);
const short w = undistorted_.width;
const short h = undistorted_.height;
pcl::PointCloud<pcl::PointXYZRGB>::Ptr cloud(new pcl::PointCloud<pcl::PointXYZRGB>(w, h));
const float * itD0 = (float *)undistorted_.data;
const char * itRGB0 = (char *)registered_.data;
pcl::PointXYZRGB * itP = &cloud->points[0];
for(int y = 0; y < h; ++y)
{
const unsigned int offset = y * w;
const float * itD = itD0 + offset;
const char * itRGB = itRGB0 + offset * 4;
for(size_t x = 0; x < w; ++x, ++itP, ++itD, itRGB += 4 )
{
const float depth_value = *itD / 1000.0f;
if(!isnan(depth_value) && !(abs(depth_value) < 0.001)){
Eigen::Vector4d psd(x, y, 1.0, 1.0 / depth_value);
pworld_ = d_matrix_inv_ * psd * depth_value;
itP->z = depth_value;
itP->x = pworld_.x();
itP->y = pworld_.y();
itP->b = itRGB[0];
itP->g = itRGB[1];
itP->r = itRGB[2];
}
}
}
listener_.release(frames_);
return cloud;
}
void shutDown(){
dev_->stop();
dev_->close();
}
cv::Mat getColor(){
listener_.waitForNewFrame(frames_);
libfreenect2::Frame * rgb = frames_[libfreenect2::Frame::Color];
cv::Mat tmp(rgb->height, rgb->width, CV_8UC4, rgb->data);
cv::Mat r = tmp.clone();
listener_.release(frames_);
return r;
}
private:
libfreenect2::Freenect2 freenect2_;
libfreenect2::Freenect2Device * dev_ = 0;
libfreenect2::PacketPipeline * pipeline_ = 0;
libfreenect2::Registration * registration_ = 0;
libfreenect2::SyncMultiFrameListener listener_;
libfreenect2::FrameMap frames_;
libfreenect2::Frame undistorted_, registered_;
Eigen::Vector4d pworld_;
Eigen::Matrix4d d_matrix_, d_matrix_inv_;
//std::vector<std::function> callbacks_;
std::string serial_;
};