-------------------------------- Code --------------------------------
| 43 | // Code |
| 44 | // -------------------------------- |
| 45 | void statisticsInit() |
| 46 | { |
| 47 | g_PixelStatistics = NULL; |
| 48 | g_StatisticsState = NOT_COLLECTING; |
| 49 | |
| 50 | const DepthMetaData* pDepthMD = getDepthMetaData(); |
| 51 | if (pDepthMD != NULL) |
| 52 | { |
| 53 | g_PixelStatistics = new XnPixelStatistics[pDepthMD->FullXRes() * pDepthMD->FullYRes()]; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | void statisticsStart(int) |
| 58 | { |
no test coverage detected