| 80 | bool Registration::isEnabled() { return enabled; } |
| 81 | |
| 82 | void Registration::depthToColor(int dx, int dy, float dz, float& cx, float& cy) |
| 83 | { |
| 84 | if (!reg) |
| 85 | { |
| 86 | reg = make_registration(dev); |
| 87 | } |
| 88 | |
| 89 | reg->apply(dx, dy, dz, cx, cy); |
| 90 | } |
no test coverage detected