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
|
/*****************************************************************************
* *
* 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. *
* *
*****************************************************************************/
#ifndef __XN_PLAYER_TYPES_H__
#define __XN_PLAYER_TYPES_H__
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include <XnStatus.h>
#include <XnOS.h>
//---------------------------------------------------------------------------
// Defines
//---------------------------------------------------------------------------
/** The maximum length of names of objects in OpenNI **/
#define XN_MAX_NAME_LENGTH 80
/** The name of the OpenNI recording format. **/
#define XN_FORMAT_NAME_ONI "oni"
//---------------------------------------------------------------------------
// Forward Declarations
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// Types
//---------------------------------------------------------------------------
/**
* Type of the production node.
*/
typedef XnInt32 XnProductionNodeType;
/**
* Predefined types of production nodes.
*/
typedef enum XnPredefinedProductionNodeType
{
/** An invalid node type **/
XN_NODE_TYPE_INVALID = -1,
/** A device node **/
XN_NODE_TYPE_DEVICE = 1,
/** A depth generator **/
XN_NODE_TYPE_DEPTH = 2,
/** An image generator **/
XN_NODE_TYPE_IMAGE = 3,
/** An audio generator **/
XN_NODE_TYPE_AUDIO = 4,
/** An IR generator **/
XN_NODE_TYPE_IR = 5,
/** A user generator **/
XN_NODE_TYPE_USER = 6,
/** A recorder **/
XN_NODE_TYPE_RECORDER = 7,
/** A player **/
XN_NODE_TYPE_PLAYER = 8,
/** A gesture generator **/
XN_NODE_TYPE_GESTURE = 9,
/** A scene analyzer **/
XN_NODE_TYPE_SCENE = 10,
/** A hands generator **/
XN_NODE_TYPE_HANDS = 11,
/** A Codec **/
XN_NODE_TYPE_CODEC = 12,
/** Abstract types **/
XN_NODE_TYPE_PRODUCTION_NODE = 13,
XN_NODE_TYPE_GENERATOR = 14,
XN_NODE_TYPE_MAP_GENERATOR = 15,
XN_NODE_TYPE_SCRIPT = 16,
XN_NODE_TYPE_FIRST_EXTENSION,
} XnPredefinedProductionNodeType;
/**
* A Version.
*/
typedef struct XnVersion
{
XnUInt8 nMajor;
XnUInt8 nMinor;
XnUInt16 nMaintenance;
XnUInt32 nBuild;
} XnVersion;
//---------------------------------------------------------------------------
// 3D Vision Types
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// Generators Capabilities
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
// Generators API Structs
//---------------------------------------------------------------------------
/**
* The output mode of a map generator.
*/
typedef struct XnMapOutputMode
{
/** Number of elements in the X-axis. */
XnUInt32 nXRes;
/** Number of elements in the Y-axis. */
XnUInt32 nYRes;
/** Number of frames per second. */
XnUInt32 nFPS;
} XnMapOutputMode;
/**
* Cropping configuration
*/
typedef struct XnCropping
{
/** TRUE if cropping is turned on, FALSE otherwise. */
XnBool bEnabled;
/** Offset in the X-axis, in pixels. */
XnUInt16 nXOffset;
/** Offset in the Y-axis, in pixels. */
XnUInt16 nYOffset;
/** Number of pixels in the X-axis. */
XnUInt16 nXSize;
/** Number of pixels in the Y-axis. */
XnUInt16 nYSize;
} XnCropping;
/**
* Field-Of-View
*/
typedef struct XnFieldOfView
{
/** Horizontal Field Of View, in radians. */
XnDouble fHFOV;
/** Vertical Field Of View, in radians. */
XnDouble fVFOV;
} XnFieldOfView;
typedef enum XnPixelFormat
{
XN_PIXEL_FORMAT_RGB24 = 1,
XN_PIXEL_FORMAT_YUV422 = 2,
XN_PIXEL_FORMAT_GRAYSCALE_8_BIT = 3,
XN_PIXEL_FORMAT_GRAYSCALE_16_BIT = 4,
XN_PIXEL_FORMAT_MJPEG = 5,
} XnPixelFormat;
typedef enum XnPlayerSeekOrigin
{
XN_PLAYER_SEEK_SET = 0,
XN_PLAYER_SEEK_CUR = 1,
XN_PLAYER_SEEK_END = 2,
} XnPlayerSeekOrigin;
//---------------------------------------------------------------------------
// Recorder Types
//---------------------------------------------------------------------------
/** An ID of a codec. See @ref xnCreateCodec. **/
typedef XnUInt32 XnCodecID;
/** Define a Codec ID by 4 characters, e.g. XN_CODEC_ID('J','P','E','G') **/
#define XN_CODEC_ID(c1, c2, c3, c4) (XnCodecID)((c4 << 24) | (c3 << 16) | (c2 << 8) | c1)
/**
* An interface used for communication between OpenNI and a player module. This interface is used by a player
* module to receive recorded data from OpenNI, which knows where to get them according to one of the values of
* @ref XnRecordMedium.
**/
typedef struct XnPlayerInputStreamInterface
{
/**
* Opens the stream for reading.
*
* @param pCookie [in] A cookie that was received with this interface.
*/
XnStatus (XN_CALLBACK_TYPE* Open)(void* pCookie);
/**
* Reads data from the stream. May read less data than asked, if the stream is near its end. This is not
* considered an error.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param pBuffer [out] A pointer to the buffer to read into.
* @param nSize [in] Number of bytes to read.
* @param pnBytesRead [out] Optional. Number of bytes actually read.
*/
XnStatus (XN_CALLBACK_TYPE* Read)(void* pCookie, void* pBuffer, XnUInt32 nSize, XnUInt32* pnBytesRead);
/**
* Sets the stream's pointer to the specified position.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param seekType [in] Specifies how to seek - according to current position, end or beginning.
* @param nOffset [in] Specifies how many bytes to move
*/
XnStatus (XN_CALLBACK_TYPE* Seek)(void* pCookie, XnOSSeekType seekType, const XnInt32 nOffset);
/**
* Tells the current stream position
*
* @param pCookie [in] A cookie that was received with this interface.
*
* @returns (XnUInt32)-1 if there was an error in the stream.
*/
XnUInt32 (XN_CALLBACK_TYPE* Tell)(void* pCookie);
/**
* Closes the stream.
*
* @param pCookie [in] A cookie that was received with this interface.
*/
void (XN_CALLBACK_TYPE* Close)(void* pCookie);
/**
* Sets the stream's pointer to the specified position. (64bit version, for large files)
*
* @param pCookie [in] A cookie that was received with this interface.
* @param seekType [in] Specifies how to seek - according to current position, end or beginning.
* @param nOffset [in] Specifies how many bytes to move
*/
XnStatus (XN_CALLBACK_TYPE* Seek64)(void* pCookie, XnOSSeekType seekType, const XnInt64 nOffset);
/**
* Tells the current position in the stream. (64bit version, for large files)
*
* @param pCookie [in] A cookie that was received with this interface.
* @param pPos [out] The position of the stream.
*
* @returns (XnUInt64)-1 on error.
*/
XnUInt64 (XN_CALLBACK_TYPE* Tell64)(void* pCookie);
} XnPlayerInputStreamInterface;
/**
* An interface that is used for notifications about node events.
**/
typedef struct XnNodeNotifications
{
/**
* Notifies the object that a production node was added
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The instance name of the added node.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeAdded)
(void* pCookie, const XnChar* strNodeName, XnProductionNodeType type,
XnCodecID compression, XnUInt32 nNumberOfFrames);
/**
* Notifies the object that a production node has been removed
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The instance name of the removed node.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeRemoved)
(void* pCookie, const XnChar* strNodeName);
/**
* Notifies the object that an integer type property has changed.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The name of the node whose property changed.
* @param strPropName [in] The name of the property that changed.
* @param nValue [in] The new value of the property.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeIntPropChanged)
(void* pCookie, const XnChar* strNodeName,
const XnChar* strPropName, XnUInt64 nValue);
/**
* Notifies the object that a real type property has changed.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The name of the node whose property changed.
* @param strPropName [in] The name of the property that changed.
* @param dValue [in] The new value of the property.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeRealPropChanged)
(void* pCookie, const XnChar* strNodeName,
const XnChar* strPropName, XnDouble dValue);
/**
* Notifies the object that a string type property has changed.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The name of the node whose property changed.
* @param strPropName [in] The name of the property that changed.
* @param strValue [in] The new value of the property.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeStringPropChanged)
(void* pCookie, const XnChar* strNodeName,
const XnChar* strPropName, const XnChar* strValue);
/**
* Notifies the object that a general type property has changed.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The name of the node whose property changed.
* @param strPropName [in] The name of the property that changed.
* @param nBufferSize [in] The size of the buffer that holds the new value.
* @param pBuffer [in] The buffer that holds the new value of the property.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeGeneralPropChanged)
(void* pCookie, const XnChar* strNodeName,
const XnChar* strPropName, XnUInt32 nBufferSize, const void* pBuffer);
/**
* Notifies the object that a node has finished sending all the initial 'property changed' notifications.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The name of the node whose state is ready.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeStateReady)
(void* pCookie, const XnChar* strNodeName);
/**
* Notifies the object that it has received new data.
*
* @param pCookie [in] A cookie that was received with this interface.
* @param strNodeName [in] The name of the node whose property changed.
* @param strName [in] The name of the property that changed.
* @param nBufferSize [in] The size of the buffer that holds the new value.
* @param pBuffer [in] The buffer that holds the new value of the property.
*/
XnStatus (XN_CALLBACK_TYPE* OnNodeNewData)
(void* pCookie, const XnChar* strNodeName,
XnUInt64 nTimeStamp, XnUInt32 nFrame, const void* pData, XnUInt32 nSize);
} XnNodeNotifications;
#endif //__XN_PLAYER_TYPES_H__
|