pelvis pub
This commit is contained in:
parent
a2a55861ce
commit
daee040908
|
@ -8,11 +8,49 @@ from rclpy.qos import QoSProfile
|
|||
from unitree_hg.msg import LowState as LowStateHG
|
||||
from tf2_ros.buffer import Buffer
|
||||
from tf2_ros.transform_listener import TransformListener
|
||||
from tf2_ros import TransformBroadcaster, TransformStamped
|
||||
from tf2_ros import TransformBroadcaster, TransformStamped, StaticTransformBroadcaster
|
||||
|
||||
import numpy as np
|
||||
import yaml
|
||||
from geometry_msgs.msg import Vector3, Quaternion
|
||||
|
||||
from scipy.spatial.transform import Rotation as R
|
||||
|
||||
def index_map(k_to, k_from):
|
||||
"""
|
||||
Returns an index mapping from k_from to k_to.
|
||||
|
||||
Given k_to=a, k_from=b,
|
||||
returns an index map "a_from_b" such that
|
||||
array_a[a_from_b] = array_b
|
||||
|
||||
Missing values are set to -1.
|
||||
"""
|
||||
index_dict = {k: i for i, k in enumerate(k_to)} # O(len(k_from))
|
||||
return [index_dict.get(k, -1) for k in k_from] # O(len(k_to))
|
||||
|
||||
def quat_rotate(q: np.ndarray, v: np.ndarray) -> np.ndarray:
|
||||
"""Rotate a vector by a quaternion along the last dimension of q and v.
|
||||
|
||||
Args:
|
||||
q: The quaternion in (w, x, y, z). Shape is (..., 4).
|
||||
v: The vector in (x, y, z). Shape is (..., 3).
|
||||
|
||||
Returns:
|
||||
The rotated vector in (x, y, z). Shape is (..., 3).
|
||||
"""
|
||||
q_w = q[..., 0]
|
||||
q_vec = q[..., 1:]
|
||||
a = v * (2.0 * q_w**2 - 1.0)[..., None]
|
||||
b = np.cross(q_vec, v, axis=-1) * q_w[..., None] * 2.0
|
||||
c = q_vec * np.einsum("...i,...i->...", q_vec, v)[..., None] * 2.0
|
||||
return a + b + c
|
||||
|
||||
def to_array(v):
|
||||
if isinstance(v, Vector3):
|
||||
return np.array([v.x, v.y, v.z], dtype=np.float32)
|
||||
elif isinstance(v, Quaternion):
|
||||
return np.array([v.x, v.y, v.z, v.w], dtype=np.float32)
|
||||
|
||||
class PelvistoTrack(Node):
|
||||
def __init__(self):
|
||||
|
@ -22,9 +60,31 @@ class PelvistoTrack(Node):
|
|||
self.tf_listener = TransformListener(self.tf_buffer, self)
|
||||
self.tf_broadcaster = TransformBroadcaster(self)
|
||||
|
||||
self.low_state = LowStateHG()
|
||||
self.low_state_subscriber = self.create_subscription(
|
||||
LowStateHG,
|
||||
'lowstate',
|
||||
self.on_low_state,
|
||||
10)
|
||||
|
||||
self.static_tf_broadcaster = StaticTransformBroadcaster(self)
|
||||
|
||||
# Timer for dynamic transform broadcasting (e.g., pelvis tracking)
|
||||
self.timer = self.create_timer(0.05, self.on_timer)
|
||||
|
||||
# One-shot timer to check & publish the static transform after a short delay
|
||||
self.static_tf_timer = self.create_timer(1.0, self.publish_static_tf)
|
||||
|
||||
def on_low_state(self,
|
||||
msg: LowStateHG):
|
||||
self.low_state = msg
|
||||
|
||||
def on_timer(self):
|
||||
try:
|
||||
self.tf_buffer.lookup_transform(
|
||||
"world", "camera_init", rclpy.time.Time()
|
||||
)
|
||||
except Exception as ex:
|
||||
print(f'Could not transform mid360_link_IMU to pelvis as world to camera_init is yet published: {ex}')
|
||||
try:
|
||||
t = TransformStamped()
|
||||
|
||||
|
@ -58,6 +118,79 @@ class PelvistoTrack(Node):
|
|||
except Exception as ex:
|
||||
print(f'Could not transform mid360_link_IMU to pelvis: {ex}')
|
||||
|
||||
def publish_static_tf(self):
|
||||
"""Check if a static transform from 'world' to 'camera_init' exists.
|
||||
If not, publish it using the parameter 'camera_init_z' for the z-value.
|
||||
This method is designed to run only once.
|
||||
"""
|
||||
# Cancel the timer so this callback runs only one time.
|
||||
if self.low_state.crc == 0:
|
||||
return
|
||||
self.static_tf_timer.cancel()
|
||||
|
||||
try:
|
||||
# Try to look up an existing transform from "world" to "camera_init".
|
||||
# Here, rclpy.time.Time() (i.e. time=0) means "the latest available".
|
||||
self.tf_buffer.lookup_transform(
|
||||
"world", "camera_init", rclpy.time.Time()
|
||||
)
|
||||
self.get_logger().info(
|
||||
"Static transform from 'world' to 'camera_init' already exists. Not publishing a new one."
|
||||
)
|
||||
except Exception as ex:
|
||||
# If the transform isn't found, declare (or get) the parameter for z and publish the static transform.
|
||||
z_value, rot = self.lidar_height_rot(self.low_state)
|
||||
static_tf = TransformStamped()
|
||||
static_tf.header.stamp = self.get_clock().now().to_msg()
|
||||
static_tf.header.frame_id = "world"
|
||||
static_tf.child_frame_id = "camera_init"
|
||||
# static_tf.child_frame_id = "pelvis"
|
||||
|
||||
static_tf.transform.translation.x = 0.0
|
||||
static_tf.transform.translation.y = 0.0
|
||||
static_tf.transform.translation.z = z_value
|
||||
static_tf.transform.rotation.x = float(rot[0])
|
||||
static_tf.transform.rotation.y = float(rot[1])
|
||||
static_tf.transform.rotation.z = float(rot[2])
|
||||
static_tf.transform.rotation.w = float(rot[3])
|
||||
|
||||
self.static_tf_broadcaster.sendTransform(static_tf)
|
||||
self.get_logger().info(
|
||||
f"Published static transform from 'world' to 'camera_init' with z = {z_value} quat = {rot}"
|
||||
)
|
||||
|
||||
def lidar_height_rot(self, low_state: LowStateHG):
|
||||
print(self.tf_buffer.lookup_transform('pelvis',
|
||||
'left_ankle_roll_link', rclpy.time.Time()))
|
||||
|
||||
world_from_pelvis_quat = np.asarray(low_state.imu_state.quaternion,
|
||||
dtype=np.float32)
|
||||
pelvis_from_rf = self.tf_buffer.lookup_transform('pelvis',
|
||||
'right_ankle_roll_link', rclpy.time.Time())
|
||||
pelvis_from_lf = self.tf_buffer.lookup_transform('pelvis',
|
||||
'left_ankle_roll_link', rclpy.time.Time())
|
||||
xyz_rf = to_array(pelvis_from_rf.transform.translation)
|
||||
xyz_lf = to_array(pelvis_from_rf.transform.translation)
|
||||
|
||||
pelvis_z_rf = -quat_rotate(
|
||||
world_from_pelvis_quat, xyz_rf)[2] + 0.028531
|
||||
pelvis_z_lf = -quat_rotate(
|
||||
world_from_pelvis_quat, xyz_lf)[2] + 0.028531
|
||||
# print(xyz_lf)
|
||||
lidar_from_pelvis = self.tf_buffer.lookup_transform('pelvis',
|
||||
'mid360_link_frame', rclpy.time.Time())
|
||||
# print(to_array(lidar_from_pelvis.transform.rotation),
|
||||
# world_from_pelvis_quat)
|
||||
lidar_z_pevlis = quat_rotate(world_from_pelvis_quat,
|
||||
to_array(lidar_from_pelvis.transform.translation))[2]
|
||||
lidar_rot = (R.from_quat(np.roll(world_from_pelvis_quat, -1)) *
|
||||
R.from_quat(to_array(lidar_from_pelvis.transform.rotation)))
|
||||
return (0.5 * pelvis_z_lf + 0.5 * pelvis_z_rf + lidar_z_pevlis,
|
||||
# lidar_rot.as_quat())
|
||||
# np.roll(world_from_pelvis_quat, -1))
|
||||
# to_array(lidar_from_pelvis.transform.rotation))
|
||||
lidar_rot.as_quat())
|
||||
|
||||
|
||||
def main():
|
||||
rclpy.init()
|
||||
|
|
Loading…
Reference in New Issue