-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkinectcapture.cpp
More file actions
344 lines (253 loc) · 7.4 KB
/
kinectcapture.cpp
File metadata and controls
344 lines (253 loc) · 7.4 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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
#include "kinectcapture.h"
#include <QDebug>
#include <QDateTime>
#define FRAMECOUNT 50
KinectCapture::KinectCapture()
:_iks(nullptr)
,_frame_reader(nullptr)
,m_color_mat(KinectCapture::ColorImageHeight,KinectCapture::ColorImageWidth,CV_8UC4)
,m_depth_mat(KinectCapture::DepthImageHeight,KinectCapture::DepthImageWidth,CV_8UC3)
//,_color_image_size(KinectCapture::Width*KinectCapture::Height*KinectCapture::Depth)
,m_tm_fmt("yyyyMMdd_HHmmss_zzz")
,m_save_dir("E:/Video")
,m_color_video_writer(new cv::VideoWriter)
,m_depth_video_writer(new cv::VideoWriter)
,m_frame_count(0)
{
qDebug()<<"Color Image Size="<<ColorImageSize;
}
KinectCapture::~KinectCapture()
{
qDebug()<<"release";
if(_evt_frame_ready!=NULL)
{
_frame_reader->UnsubscribeMultiSourceFrameArrived(_evt_frame_ready);
_frame_reader->Release();
}
// qDebug()<<"release 2";
// if(_frame_reader!=nullptr)
// {
// _frame_reader->Release();
// }
// qDebug()<<"release 3";
if(_iks!=nullptr)
{
_iks->Close();
_iks->Release();
}
//m_color_video_writer->release();
// if(_iks!=nullptr)
// {
//// _iks->Close();
//// _frame_reader->Release();
// _iks->Release();
// }
// qDebug()<<"release 4";
}
//Initialize Kinect Sensor
bool KinectCapture::Initialize()
{
// IKinectSensor *sensor = nullptr;
if(FAILED(GetDefaultKinectSensor(&_iks)))
{
qDebug()<<"Fatal Error: Canno Find Default Kinect Sensor";
return false;
}
// _iks.reset(sensor);
if(FAILED(_iks->Open()))
{
qDebug()<<"Fatal Error: Cannot Open Kinect Sensor";
return false;
}
if(m_color_video_writer->isOpened())
{
m_color_video_writer->release();
}
if(m_depth_video_writer->isOpened())
{
m_depth_video_writer->release();
}
// IColorFrameSource *pColorSource = NULL;
// if(FAILED(_iks->get_ColorFrameSource(&pColorSource)))
// {
// return false;
// }
// if(FAILED(pColorSource->OpenReader(&_icolor)))
// {
// return false;
// }
// IDepthFrameSource *pDepthSource = NULL;
// if(FAILED(_iks->get_DepthFrameSource(&pDepthSource)))
// {
// return false;
// }
// if(FAILED(pDepthSource->OpenReader(&_idepth)))
// {
// return false;
// }
// IBodyFrameSource *pBodySource = NULL;
// if(FAILED(_iks->get_BodyFrameSource(&pBodySource)))
// {
// return false;
// }
// if(FAILED(pBodySource->OpenReader(&_ibody)))
// {
// return false;
// }
DWORD frame_type = FrameSourceTypes::FrameSourceTypes_Depth | FrameSourceTypes::FrameSourceTypes_Color |
FrameSourceTypes::FrameSourceTypes_Body;
// IMultiSourceFrameReader *reader = nullptr;
if(FAILED(_iks->OpenMultiSourceFrameReader(frame_type,&_frame_reader)))
{
qDebug()<<"Fatal Error: Cannot Open Frame Reader";
return false;
}
// _frame_reader.reset(reader);
_frame_reader->SubscribeMultiSourceFrameArrived(&_evt_frame_ready);
return true;
}
bool KinectCapture::ProcessArrivedFrame(IMultiSourceFrameArrivedEventArgs *args)
{
// qDebug()<<"Process Arrived Frame Data";
IMultiSourceFrameReference *fr = nullptr;
bool result = false;
if(SUCCEEDED(args->get_FrameReference(&fr)))
{
IMultiSourceFrame *sf = nullptr;
if(SUCCEEDED(fr->AcquireFrame(&sf)))
{
//CaptureColorFrame(sf);
CaptureDepthFrame(sf,m_frame_count);
++m_frame_count;
if(m_frame_count==FRAMECOUNT)
{
qDebug()<<"Record";
m_frame_count = 0;
}
sf->Release();
result = true;
}
fr->Release();
}
return result;
}
void KinectCapture::ProcessDepthFrame(UINT16 *pBuffer, USHORT nMinDepth, USHORT nMaxDepth)
{
if (pBuffer)
{
// RGBQUAD* pRGBX = m_pDepthRGBX;
// end pixel is start + width*height - 1
//const UINT16* pBufferEnd = pBuffer + (DepthImageWidth * DepthImageHeight);
int idx = 0;
//int length = DepthImageSize;
unsigned char* mat_data = m_depth_mat.ptr<unsigned char>();
while (idx < DepthImageSize)
{
USHORT depth = pBuffer[idx];
// To convert to a byte, we're discarding the most-significant
// rather than least-significant bits.
// We're preserving detail, although the intensity will "wrap."
// Values outside the reliable depth range are mapped to 0 (black).
// Note: Using conditionals in this loop could degrade performance.
// Consider using a lookup table instead when writing production code.
BYTE intensity = static_cast<BYTE>((depth >= nMinDepth) && (depth <= nMaxDepth) ? (depth % 256) : 0);
//m_depth_mat[idx] = intensity;
//m_depth_mat[idx][0] = intensity;
//m_depth_mat[idx][1] = intensity;
//m_depth_mat[idx][2] = intensity;
mat_data[idx*3] = intensity;
mat_data[idx*3+1] = intensity;
mat_data[idx*3+2] = intensity;
++idx;
}
//cv::imwrite("e:\\projects\\test.png",m_depth_mat);
}
}
void KinectCapture::CaptureDepthFrame(IMultiSourceFrame *sf, int frame_count)
{
IDepthFrameReference *idfr = nullptr;
if(SUCCEEDED(sf->get_DepthFrameReference(&idfr)))
{
IDepthFrame* idf = nullptr;
if(SUCCEEDED(idfr->AcquireFrame(&idf)))
{
USHORT min_dist;
USHORT max_dist;
if(SUCCEEDED(idf->get_DepthMinReliableDistance(&min_dist))
&&SUCCEEDED(idf->get_DepthMaxReliableDistance(&max_dist)))
{
UINT buffer_size = 0;
UINT16 *ptr_buffer;
if(SUCCEEDED(idf->AccessUnderlyingBuffer(&buffer_size,&ptr_buffer)))
{
ProcessDepthFrame(ptr_buffer,min_dist,max_dist);
if(frame_count==0)
{
if(m_depth_video_writer->isOpened())
{
m_depth_video_writer->release();
}
QString path = m_save_dir.absoluteFilePath("Depth_"+QDateTime::currentDateTime().toString(m_tm_fmt)+".avi");
m_depth_video_writer->open(path.toStdString().c_str(),9,8.0,cv::Size(DepthImageWidth,DepthImageHeight));
//_cvw->write(_color_image);
}
m_depth_video_writer->write(m_depth_mat);
}
idfr->Release();
}
idf->Release();
}
}
}
bool KinectCapture::CaptureColorFrame(IMultiSourceFrame *sf, int frame_count)
{
IColorFrameReference *cfr = nullptr;
if(SUCCEEDED(sf->get_ColorFrameReference(&cfr)))
{
IColorFrame* cf = nullptr;
if(SUCCEEDED(cfr->AcquireFrame(&cf)))
{
HRESULT hr = cf->CopyConvertedFrameDataToArray(ColorImageSize,m_color_mat.data,ColorImageFormat_Bgra);
if(SUCCEEDED(hr))
{
if(frame_count==0)
{
if(m_color_video_writer->isOpened())
{
m_color_video_writer->release();
}
QString path = m_save_dir.absoluteFilePath("Color_"+QDateTime::currentDateTime().toString(m_tm_fmt)+".avi");
m_color_video_writer->open(path.toStdString().c_str(),9,8.0,cv::Size(ColorImageWidth,ColorImageHeight));
//_cvw->write(_color_image);
}
m_color_video_writer->write(m_color_mat);
return true;
}
}
}
return false;
//return hr==S_OK;
}
//void KinectCapture::WriteVideo()
//{
//// if(!_cvw->isOpened())
//// {
//// bool retval = _cvw->open(path,9,8.0,cv::Size(KinectCapture::Width,KinectCapture::Height));
//// qDebug()<<retval;
//// }
// _cvw->write(_color_image);
//}
//bool KinectCapture::StartWriteVideo(const char *path)
//{
// return _cvw->open(path,9,8.0,cv::Size(ColorImageWidth,ColorImageHeight));
//}
//void KinectCapture::EndWriteVideo()
//{
// //_cvw->release();
//}
//void
//bool KinectCapture::CopyColorFrameData(IColorFrame* frame)
//{
// HRESULT hr = frame->CopyConvertedFrameDataToArray(_color_image_size,_color_image.data,ColorImageFormat_Bgra);
// return SUCCEEDED(hr);
//}