| 716 | } |
| 717 | |
| 718 | void Freenect2DeviceImpl::setIrCameraParams(const Freenect2Device::IrCameraParams ¶ms) |
| 719 | { |
| 720 | ir_camera_params_ = params; |
| 721 | DepthPacketProcessor *proc = pipeline_->getDepthPacketProcessor(); |
| 722 | if (proc != 0) |
| 723 | { |
| 724 | IrCameraTables tables(params); |
| 725 | proc->loadXZTables(&tables.xtable[0], &tables.ztable[0]); |
| 726 | proc->loadLookupTable(&tables.lut[0]); |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | Freenect2Device::Config::Config() : |
| 731 | MinDepth(0.5f), |
nothing calls this directly
no test coverage detected