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
|
#include "DepthUtils.h"
#include "DepthUtilsImpl.h"
struct _DepthUtils
{
DepthUtilsImpl* pDepthUtils;
};
XN_C_API XnStatus DepthUtilsInitialize(DepthUtilsSensorCalibrationInfo* pDepthParameters, DepthUtilsHandle* handle)
{
*handle = new _DepthUtils;
(*handle)->pDepthUtils = new DepthUtilsImpl;
XnStatus rc = (*handle)->pDepthUtils->Initialize(pDepthParameters);
if (rc != XN_STATUS_OK)
{
DepthUtilsShutdown(handle);
}
return rc;
}
XN_C_API void DepthUtilsShutdown(DepthUtilsHandle* handle)
{
if ((*handle) != NULL && (*handle)->pDepthUtils != NULL)
{
delete (*handle)->pDepthUtils;
delete *handle;
*handle = NULL;
}
}
XN_C_API XnStatus DepthUtilsTranslatePixel(DepthUtilsHandle handle, unsigned int x, unsigned int y, unsigned short z, unsigned int* pX, unsigned int* pY)
{
if (handle == NULL || handle->pDepthUtils == NULL)
{
return XN_STATUS_BAD_PARAM;
}
return handle->pDepthUtils->TranslateSinglePixel(x, y, z, *pX, *pY);
}
XN_C_API XnStatus DepthUtilsTranslateDepthMap(DepthUtilsHandle handle, unsigned short* depth)
{
if (handle == NULL || handle->pDepthUtils == NULL)
{
return XN_STATUS_BAD_PARAM;
}
return handle->pDepthUtils->Apply(depth);
}
XN_C_API XnStatus DepthUtilsSetDepthConfiguration(DepthUtilsHandle handle, int xres, int yres, OniPixelFormat format, int isMirrored)
{
if (handle == NULL || handle->pDepthUtils == NULL)
{
return XN_STATUS_BAD_PARAM;
}
return handle->pDepthUtils->SetDepthConfiguration(xres, yres, format, isMirrored == 1);
}
XN_C_API XnStatus DepthUtilsSetColorResolution(DepthUtilsHandle handle, int xres, int yres)
{
if (handle == NULL || handle->pDepthUtils == NULL)
{
return XN_STATUS_BAD_PARAM;
}
return handle->pDepthUtils->SetColorResolution(xres, yres);
}
|