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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
/*****************************************************************************
* *
* OpenNI 2.x Alpha *
* Copyright (C) 2012 PrimeSense Ltd. *
* *
* This file is part of OpenNI. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*****************************************************************************/
// --------------------------------
// Includes
// --------------------------------
#include <XnOS.h>
#include "Capture.h"
#include "Device.h"
#include "Draw.h"
#if (XN_PLATFORM == XN_PLATFORM_WIN32)
#include <Commdlg.h>
#endif
// --------------------------------
// Defines
// --------------------------------
#define CAPTURED_FRAMES_DIR_NAME "CapturedFrames"
// --------------------------------
// Types
// --------------------------------
typedef enum
{
NOT_CAPTURING,
SHOULD_CAPTURE,
CAPTURING,
} CapturingState;
typedef enum
{
CAPTURE_DEPTH_STREAM,
CAPTURE_COLOR_STREAM,
CAPTURE_IR_STREAM,
CAPTURE_STREAM_COUNT
} CaptureSourceType;
typedef enum
{
STREAM_CAPTURE_LOSSLESS = FALSE,
STREAM_CAPTURE_LOSSY = TRUE,
STREAM_DONT_CAPTURE,
} StreamCaptureType;
typedef struct StreamCapturingData
{
StreamCaptureType captureType;
const char* name;
bool bRecording;
openni::VideoFrameRef& (*getFrameFunc)();
openni::VideoStream& (*getStream)();
bool (*isStreamOn)();
int startFrame;
} StreamCapturingData;
typedef struct CapturingData
{
StreamCapturingData streams[CAPTURE_STREAM_COUNT];
openni::Recorder recorder;
char csFileName[256];
int nStartOn; // time to start, in seconds
bool bSkipFirstFrame;
CapturingState State;
int nCapturedFrameUniqueID;
char csDisplayMessage[500];
} CapturingData;
// --------------------------------
// Static Global Variables
// --------------------------------
CapturingData g_Capture;
DeviceParameter g_DepthCapturing;
DeviceParameter g_ColorCapturing;
DeviceParameter g_IRCapturing;
// --------------------------------
// Code
// --------------------------------
void captureInit()
{
// Depth Formats
int nIndex = 0;
g_DepthCapturing.pValues[nIndex] = STREAM_CAPTURE_LOSSLESS;
g_DepthCapturing.pValueToName[nIndex] = "Lossless";
nIndex++;
g_DepthCapturing.pValues[nIndex] = STREAM_DONT_CAPTURE;
g_DepthCapturing.pValueToName[nIndex] = "Don't Capture";
nIndex++;
g_DepthCapturing.nValuesCount = nIndex;
// Color Formats
nIndex = 0;
g_ColorCapturing.pValues[nIndex] = STREAM_CAPTURE_LOSSLESS;
g_ColorCapturing.pValueToName[nIndex] = "Lossless";
nIndex++;
g_ColorCapturing.pValues[nIndex] = STREAM_CAPTURE_LOSSY;
g_ColorCapturing.pValueToName[nIndex] = "Lossy";
nIndex++;
g_ColorCapturing.pValues[nIndex] = STREAM_DONT_CAPTURE;
g_ColorCapturing.pValueToName[nIndex] = "Don't Capture";
nIndex++;
g_ColorCapturing.nValuesCount = nIndex;
// IR Formats
nIndex = 0;
g_IRCapturing.pValues[nIndex] = STREAM_CAPTURE_LOSSLESS;
g_IRCapturing.pValueToName[nIndex] = "Lossless";
nIndex++;
g_IRCapturing.pValues[nIndex] = STREAM_DONT_CAPTURE;
g_IRCapturing.pValueToName[nIndex] = "Don't Capture";
nIndex++;
g_IRCapturing.nValuesCount = nIndex;
// Init
g_Capture.csFileName[0] = 0;
g_Capture.State = NOT_CAPTURING;
g_Capture.nCapturedFrameUniqueID = 0;
g_Capture.csDisplayMessage[0] = '\0';
g_Capture.bSkipFirstFrame = false;
g_Capture.streams[CAPTURE_DEPTH_STREAM].captureType = STREAM_CAPTURE_LOSSLESS;
g_Capture.streams[CAPTURE_DEPTH_STREAM].name = "Depth";
g_Capture.streams[CAPTURE_DEPTH_STREAM].getFrameFunc = getDepthFrame;
g_Capture.streams[CAPTURE_DEPTH_STREAM].getStream = getDepthStream;
g_Capture.streams[CAPTURE_DEPTH_STREAM].isStreamOn = isDepthOn;
g_Capture.streams[CAPTURE_COLOR_STREAM].captureType = STREAM_CAPTURE_LOSSY;
g_Capture.streams[CAPTURE_COLOR_STREAM].name = "Color";
g_Capture.streams[CAPTURE_COLOR_STREAM].getFrameFunc = getColorFrame;
g_Capture.streams[CAPTURE_COLOR_STREAM].getStream = getColorStream;
g_Capture.streams[CAPTURE_COLOR_STREAM].isStreamOn = isColorOn;
g_Capture.streams[CAPTURE_IR_STREAM].captureType = STREAM_CAPTURE_LOSSLESS;
g_Capture.streams[CAPTURE_IR_STREAM].name = "IR";
g_Capture.streams[CAPTURE_IR_STREAM].getFrameFunc = getIRFrame;
g_Capture.streams[CAPTURE_IR_STREAM].getStream = getIRStream;
g_Capture.streams[CAPTURE_IR_STREAM].isStreamOn = isIROn;
}
bool isCapturing()
{
return (g_Capture.State != NOT_CAPTURING);
}
void captureBrowse(int)
{
#if (ONI_PLATFORM == ONI_PLATFORM_WIN32)
OPENFILENAME ofn = { 0 };
ofn.lStructSize = sizeof(ofn);
ofn.lpstrFilter = TEXT("Oni Files (*.oni)\0*.oni\0");
ofn.nFilterIndex = 1;
ofn.lpstrFile = g_Capture.csFileName;
ofn.nMaxFile = sizeof(g_Capture.csFileName);
ofn.lpstrTitle = TEXT("Capture to...");
ofn.lpstrDefExt = TEXT("oni");
ofn.Flags = OFN_EXPLORER | OFN_NOCHANGEDIR;
BOOL gotFileName = GetSaveFileName(&ofn);
if (gotFileName)
{
if (g_Capture.csFileName[0] != 0)
{
if (strstr(g_Capture.csFileName, ".oni") == NULL)
{
strcat(g_Capture.csFileName, ".oni");
}
}
}
#else
// Set capture file to defaults.
strcpy(g_Capture.csFileName, "./Captured.oni");
#endif // ONI_PLATFORM_WIN32
// as we waited for user input, it's probably better to discard first frame (especially if an accumulating
// stream is on, like audio).
g_Capture.bSkipFirstFrame = true;
}
void captureStart(int nDelay)
{
captureBrowse(0);
// On some platforms a user can cancel capturing. Whenever he cancels
// capturing, the gs_filePath[0] remains empty.
if ('\0' == g_Capture.csFileName[0])
{
return;
}
openni::Status rc = g_Capture.recorder.create(g_Capture.csFileName);
if (rc != openni::STATUS_OK)
{
displayError("Failed to create recorder!");
return;
}
XnUInt64 nNow;
xnOSGetTimeStamp(&nNow);
nNow /= 1000;
g_Capture.nStartOn = (XnUInt32)nNow + nDelay;
g_Capture.State = SHOULD_CAPTURE;
}
void captureRestart(int)
{
captureStop(0);
captureStart(0);
}
void captureStop(int)
{
if (g_Capture.recorder.isValid())
{
g_Capture.recorder.destroy();
g_Capture.State = NOT_CAPTURING;
}
}
#define START_CAPTURE_CHECK_RC(rc, what) \
if (nRetVal != XN_STATUS_OK) \
{ \
displayError("Failed to %s: %s\n", what, openni::OpenNI::getExtendedError()); \
g_Capture.recorder.destroy(); \
g_Capture.State = NOT_CAPTURING; \
return; \
}
void captureRun()
{
XnStatus nRetVal = XN_STATUS_OK;
if (g_Capture.State != SHOULD_CAPTURE)
{
return;
}
XnUInt64 nNow;
xnOSGetTimeStamp(&nNow);
nNow /= 1000;
// check if time has arrived
if ((XnInt64)nNow >= g_Capture.nStartOn)
{
// check if we need to discard first frame
if (g_Capture.bSkipFirstFrame)
{
g_Capture.bSkipFirstFrame = false;
}
else
{
// start recording
for (int i = 0; i < CAPTURE_STREAM_COUNT; ++i)
{
g_Capture.streams[i].bRecording = false;
if (g_Capture.streams[i].isStreamOn() && g_Capture.streams[i].captureType != STREAM_DONT_CAPTURE)
{
nRetVal = g_Capture.recorder.attach(g_Capture.streams[i].getStream(), g_Capture.streams[i].captureType == STREAM_CAPTURE_LOSSY);
START_CAPTURE_CHECK_RC(nRetVal, "add stream");
g_Capture.streams[i].bRecording = TRUE;
g_Capture.streams[i].startFrame = g_Capture.streams[i].getFrameFunc().getFrameIndex();
}
}
nRetVal = g_Capture.recorder.start();
START_CAPTURE_CHECK_RC(nRetVal, "start recording");
g_Capture.State = CAPTURING;
}
}
}
void captureSetDepthFormat(int format)
{
g_Capture.streams[CAPTURE_DEPTH_STREAM].captureType = (StreamCaptureType)format;
}
void captureSetColorFormat(int format)
{
g_Capture.streams[CAPTURE_COLOR_STREAM].captureType = (StreamCaptureType)format;
}
void captureSetIRFormat(int format)
{
g_Capture.streams[CAPTURE_IR_STREAM].captureType = (StreamCaptureType)format;
}
void getCaptureMessage(char* pMessage)
{
switch (g_Capture.State)
{
case SHOULD_CAPTURE:
{
XnUInt64 nNow;
xnOSGetTimeStamp(&nNow);
nNow /= 1000;
sprintf(pMessage, "Capturing will start in %u seconds...", g_Capture.nStartOn - (XnUInt32)nNow);
}
break;
case CAPTURING:
{
int nChars = sprintf(pMessage, "* Recording! Press any key or use menu to stop *\nRecorded Frames: ");
for (int i = 0; i < CAPTURE_STREAM_COUNT; ++i)
{
if (g_Capture.streams[i].bRecording)
{
nChars += sprintf(pMessage + nChars, "%s-%d ", g_Capture.streams[i].name, g_Capture.streams[i].getFrameFunc().getFrameIndex() - g_Capture.streams[i].startFrame);
}
}
}
break;
default:
pMessage[0] = 0;
}
}
void getColorFileName(int num, char* csName)
{
sprintf(csName, "%s/Color_%d.raw", CAPTURED_FRAMES_DIR_NAME, num);
}
void getDepthFileName(int num, char* csName)
{
sprintf(csName, "%s/Depth_%d.raw", CAPTURED_FRAMES_DIR_NAME, num);
}
void getIRFileName(int num, char* csName)
{
sprintf(csName, "%s/IR_%d.raw", CAPTURED_FRAMES_DIR_NAME, num);
}
int findUniqueFileName()
{
xnOSCreateDirectory(CAPTURED_FRAMES_DIR_NAME);
int num = g_Capture.nCapturedFrameUniqueID;
XnBool bExist = FALSE;
XnStatus nRetVal = XN_STATUS_OK;
XnChar csColorFileName[XN_FILE_MAX_PATH];
XnChar csDepthFileName[XN_FILE_MAX_PATH];
XnChar csIRFileName[XN_FILE_MAX_PATH];
for (;;)
{
// check color
getColorFileName(num, csColorFileName);
nRetVal = xnOSDoesFileExist(csColorFileName, &bExist);
if (nRetVal != XN_STATUS_OK)
break;
if (!bExist)
{
// check depth
getDepthFileName(num, csDepthFileName);
nRetVal = xnOSDoesFileExist(csDepthFileName, &bExist);
if (nRetVal != XN_STATUS_OK || !bExist)
break;
}
if (!bExist)
{
// check IR
getIRFileName(num, csIRFileName);
nRetVal = xnOSDoesFileExist(csIRFileName, &bExist);
if (nRetVal != XN_STATUS_OK || !bExist)
break;
}
++num;
}
return num;
}
void captureSingleFrame(int)
{
int num = findUniqueFileName();
XnChar csColorFileName[XN_FILE_MAX_PATH];
XnChar csDepthFileName[XN_FILE_MAX_PATH];
XnChar csIRFileName[XN_FILE_MAX_PATH];
getColorFileName(num, csColorFileName);
getDepthFileName(num, csDepthFileName);
getIRFileName(num, csIRFileName);
openni::VideoFrameRef& colorFrame = getColorFrame();
if (colorFrame.isValid())
{
xnOSSaveFile(csColorFileName, colorFrame.getData(), colorFrame.getDataSize());
}
openni::VideoFrameRef& depthFrame = getDepthFrame();
if (depthFrame.isValid())
{
xnOSSaveFile(csDepthFileName, depthFrame.getData(), depthFrame.getDataSize());
}
openni::VideoFrameRef& irFrame = getIRFrame();
if (irFrame.isValid())
{
xnOSSaveFile(csIRFileName, irFrame.getData(), irFrame.getDataSize());
}
g_Capture.nCapturedFrameUniqueID = num + 1;
displayMessage("Frames saved with ID %d", num);
}
const char* getCaptureTypeName(StreamCaptureType type)
{
switch (type)
{
case STREAM_CAPTURE_LOSSLESS: return "Lossless";
case STREAM_CAPTURE_LOSSY: return "Lossy";
case STREAM_DONT_CAPTURE: return "Don't Capture";
default:
XN_ASSERT(FALSE);
return "";
}
}
const char* captureGetDepthFormatName()
{
return getCaptureTypeName(g_Capture.streams[CAPTURE_DEPTH_STREAM].captureType);
}
const char* captureGetColorFormatName()
{
return getCaptureTypeName(g_Capture.streams[CAPTURE_COLOR_STREAM].captureType);
}
const char* captureGetIRFormatName()
{
return getCaptureTypeName(g_Capture.streams[CAPTURE_IR_STREAM].captureType);
}
|