MCPcopy Create free account
hub / github.com/ai4ce/RAP / SE3_exp

Function SE3_exp

utils/pose_utils.py:520–532  ·  view source on GitHub ↗
(tau)

Source from the content-addressed store, hash-verified

518
519
520def SE3_exp(tau):
521 dtype = tau.dtype
522 device = tau.device
523
524 rho = tau[:3]
525 theta = tau[3:]
526 R = SO3_exp(theta)
527 t = V(theta) @ rho
528
529 T = torch.eye(4, device=device, dtype=dtype)
530 T[:3, :3] = R
531 T[:3, 3] = t
532 return T

Callers 1

updateMethod · 0.90

Calls 2

SO3_expFunction · 0.85
VFunction · 0.85

Tested by

no test coverage detected