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
|
/* Copyright (c) 2012 Patrick Ruoff
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*/
#include "camera_kinect_ir.h"
#if __has_include(<Kinect.h>)
#include "frame.hpp"
#include "compat/sleep.hpp"
#include "compat/camera-names.hpp"
#include "compat/math-imports.hpp"
#include <opencv2/imgproc.hpp>
#include "cv/video-property-page.hpp"
#include <cstdlib>
namespace pt_module {
CameraKinectIr::CameraKinectIr(const QString& module_name) : s { module_name }
{
}
QString CameraKinectIr::get_desired_name() const
{
return desired_name;
}
QString CameraKinectIr::get_active_name() const
{
return active_name;
}
void CameraKinectIr::show_camera_settings()
{
const int idx = camera_name_to_index(s.camera_name);
/*
if (cap && cap->isOpened())
video_property_page::show_from_capture(*cap, idx);
else
video_property_page::show(idx);
*/
}
CameraKinectIr::result CameraKinectIr::get_info() const
{
if (cam_info.res_x == 0 || cam_info.res_y == 0)
return { false, pt_camera_info() };
else
return { true, cam_info };
}
CameraKinectIr::result CameraKinectIr::get_frame(pt_frame& frame_)
{
cv::Mat& frame = frame_.as<Frame>()->mat;
const bool new_frame = get_frame_(frame);
if (new_frame)
{
const f dt = (f)t.elapsed_seconds();
t.start();
// measure fps of valid frames
constexpr f RC = f{1}/10; // seconds
const f alpha = dt/(dt + RC);
if (dt_mean < dt_eps)
dt_mean = dt;
else
dt_mean = (1-alpha) * dt_mean + alpha * dt;
cam_info.fps = dt_mean > dt_eps ? 1 / dt_mean : 0;
cam_info.res_x = frame.cols;
cam_info.res_y = frame.rows;
cam_info.fov = fov;
return { true, cam_info };
}
else
return { false, {} };
}
// Safe release for interfaces
template<class Interface>
inline void SafeRelease(Interface *& pInterfaceToRelease)
{
if (pInterfaceToRelease != NULL)
{
pInterfaceToRelease->Release();
pInterfaceToRelease = NULL;
}
}
bool CameraKinectIr::start(int idx, int fps, int res_x, int res_y)
{
if (idx >= 0 && fps >= 0 && res_x >= 0 && res_y >= 0)
{
if (cam_desired.idx != idx ||
(int)cam_desired.fps != fps ||
cam_desired.res_x != res_x ||
cam_desired.res_y != res_y )
{
stop();
desired_name = get_camera_names().value(idx);
bool kinectIRSensor = false;
if (desired_name.compare(KKinectIRSensor) == 0)
{
kinectIRSensor = true;
}
cam_desired.idx = idx;
cam_desired.fps = fps;
cam_desired.res_x = res_x;
cam_desired.res_y = res_y;
cam_desired.fov = fov;
HRESULT hr;
// Get and open Kinect sensor
hr = GetDefaultKinectSensor(&iKinectSensor);
if (SUCCEEDED(hr))
{
hr = iKinectSensor->Open();
}
// Create infrared frame reader
if (SUCCEEDED(hr))
{
// Initialize the Kinect and get the infrared reader
IInfraredFrameSource* pInfraredFrameSource = NULL;
hr = iKinectSensor->Open();
if (SUCCEEDED(hr))
{
hr = iKinectSensor->get_InfraredFrameSource(&pInfraredFrameSource);
}
if (SUCCEEDED(hr))
{
hr = pInfraredFrameSource->OpenReader(&iInfraredFrameReader);
}
SafeRelease(pInfraredFrameSource);
}
//if (cap->isOpened())
{
cam_info = pt_camera_info();
cam_info.idx = idx;
dt_mean = 0;
active_name = desired_name;
cv::Mat tmp;
if (get_frame_(tmp))
{
t.start();
return true;
}
}
return false;
}
return true;
}
stop();
return false;
}
void CameraKinectIr::stop()
{
// done with infrared frame reader
SafeRelease(iInfraredFrame);
SafeRelease(iInfraredFrameReader);
// close the Kinect Sensor
if (iKinectSensor)
{
iKinectSensor->Close();
}
SafeRelease(iKinectSensor);
desired_name = QString{};
active_name = QString{};
cam_info = {};
cam_desired = {};
}
bool CameraKinectIr::get_frame_(cv::Mat& frame)
{
if (!iInfraredFrameReader)
{
return false;
}
bool success = false;
// Release previous frame if any
SafeRelease(iInfraredFrame);
HRESULT hr = iInfraredFrameReader->AcquireLatestFrame(&iInfraredFrame);
if (SUCCEEDED(hr))
{
INT64 nTime = 0;
IFrameDescription* frameDescription = NULL;
int nWidth = 0;
int nHeight = 0;
float diagonalFieldOfView = 0.0f;
UINT nBufferSize = 0;
UINT16 *pBuffer = NULL;
hr = iInfraredFrame->get_RelativeTime(&nTime);
if (SUCCEEDED(hr))
{
hr = iInfraredFrame->get_FrameDescription(&frameDescription);
}
if (SUCCEEDED(hr))
{
hr = frameDescription->get_Width(&nWidth);
}
if (SUCCEEDED(hr))
{
hr = frameDescription->get_Height(&nHeight);
}
if (SUCCEEDED(hr))
{
hr = frameDescription->get_DiagonalFieldOfView(&diagonalFieldOfView);
}
if (SUCCEEDED(hr))
{
hr = iInfraredFrame->AccessUnderlyingBuffer(&nBufferSize, &pBuffer);
}
if (SUCCEEDED(hr))
{
//ProcessInfrared(nTime, pBuffer, nWidth, nHeight);
// Create an OpenCV matrix with our 16-bits IR buffer
cv::Mat raw = cv::Mat(nHeight, nWidth, CV_16UC1, pBuffer); // .clone();
// Convert that OpenCV matrix to an RGB one as this is what is expected by our point extractor
// TODO: Ideally we should implement a point extractors that works with our native buffer
// First resample to 8-bits
double min = std::numeric_limits<uint16_t>::min();
double max = std::numeric_limits<uint16_t>::max();
// For scalling to have more precission in the range we are interrested in
min = max - 255;
//cv::minMaxLoc(raw, &min, &max); // Should we use 16bit min and max instead?
cv::Mat raw8;
raw.convertTo(raw8, CV_8U, 255.0 / (max - min), -255.0*min / (max - min));
// Second convert to RGB
cv::cvtColor(raw8, frame, cv::COLOR_GRAY2BGR);
int newType = frame.type();
success = true;
}
SafeRelease(frameDescription);
}
return success;
/*
if (cap && cap->isOpened())
{
for (unsigned i = 0; i < 10; i++)
{
if (cap->read(frame))
return true;
portable::sleep(50);
}
}
return false;
*/
}
void CameraKinectIr::camera_deleter::operator()(cv::VideoCapture* cap)
{
if (cap)
{
if (cap->isOpened())
cap->release();
delete cap;
}
}
} // ns pt_module
#endif
|