motion_stack.core.utils package
Submodules
motion_stack.core.utils.csv module
simple csv utilities
motion_stack.core.utils.hypersphere_clamp module
Vectorized functions to clamp onto an hypershpere
Author: Elian NEPPEL Lab: SRL, Moonshot team
- motion_stack.core.utils.hypersphere_clamp.SAMPLING_STEP = 0.01
Type:
float
will sample every 0.01 for a unit hypersphere if you use the radii, it is equivalent sampling every 0.01 * radii
- motion_stack.core.utils.hypersphere_clamp.ORD = inf
Type:
float
Order of the norm for clamping
- motion_stack.core.utils.hypersphere_clamp.clamp_to_unit_hs(start, end, sampling_step=0.01, norm_ord=inf)[source]
Finds the farthest point on the segment that is inside the unit hypersphere.
- Parameters:
start (NDArray[Shape[N], float64]) – start of the segment
end (NDArray[Shape[N], float64]) – end of the segment
sampling_step (float) – distance between each sample.
norm_ord (int or numpy inf) – order of the distance/norm used to create the hypersphere
- Returns:
Farthest point on the segment that is inside the unit hypersphere
- Return type:
NDArray
[Shape
[N
],float64
]
- motion_stack.core.utils.hypersphere_clamp.clamp_to_sqewed_hs(center, start, end, radii, norm_ord=inf)[source]
Finds the farthest point on the segment that is inside the sqewed hypersphere.
radii of the hypersphere in each dimensions is computed by streching the space in each dimension, then computing relative to the unit hypersphere, then unstreching.
- Return type:
NDArray
[Shape
[N
],floating
]- Parameters:
center (NDArray[Shape[N], floating])
start (NDArray[Shape[N], floating])
end (NDArray[Shape[N], floating])
radii (NDArray[Shape[N], floating])
- motion_stack.core.utils.hypersphere_clamp.fuse_xyz_quat(pose: motion_stack.core.utils.pose.XyzQuat[nptyping.ndarray.NDArray[nptyping.base_meta_classes.Shape[3], numpy.floating], quaternion.quaternion]) nptyping.ndarray.NDArray[nptyping.base_meta_classes.Shape[7], numpy.floating] [source]
- motion_stack.core.utils.hypersphere_clamp.fuse_xyz_quat(pose: List[motion_stack.core.utils.pose.XyzQuat[nptyping.ndarray.NDArray[nptyping.base_meta_classes.Shape[3], numpy.floating], quaternion.quaternion]])
- motion_stack.core.utils.hypersphere_clamp.fuse_xyz_quat(pose)
Fuses XyzQuat objects into a flat numpy array.
If input is a single XyzQuat, returns a (7,) fused array.
If input is a list, returns a flat (n*7,) fused array.
- Parameters:
pose (XyzQuat[NDArray[Shape[3], floating], quaternion] | List[XyzQuat[NDArray[Shape[3], floating], quaternion]]) – A single or list of XyzQuat objects containing position and orientation.
- Returns:
The fused representation(s) as (7,) for a single input or (n*7,) for batched input.
- Return type:
NDArray
[Shape
[7 n
],floating
]
- motion_stack.core.utils.hypersphere_clamp.unfuse_xyz_quat(arr)[source]
Unpacks a fused 7D array back into XYZ and Quaternion components.
- Parameters:
arr (NDArray[Shape[7 n], floating]) – Flattened fused representation(s).
- Returns:
The unfused position(s) and orientation(s).
- Return type:
List
[XyzQuat
[NDArray
[Shape
[3
],floating
],quaternion
]]
- motion_stack.core.utils.hypersphere_clamp.clamp_multi_xyz_quat(center, start, end, radii, norm_ord=inf)[source]
wrapper for clamp_to_sqewed_hs specialized in several 3D coordinate + one quaternion.
The math for the quaternion is wrong (lerp instead of slerp). So: Center and start quat should not be opposite from each-other. Precision goes down if they are far appart. But it’s not so bad.
- Parameters:
center (List[XyzQuat[NDArray[Shape[3], floating], quaternion]]) – center from which not to diverge
start (List[XyzQuat[NDArray[Shape[3], floating], quaternion]]) – start point of the interpolation
end (List[XyzQuat[NDArray[Shape[3], floating], quaternion]]) – end point of the interpolation
radii (List[XyzQuat[float, float]] | XyzQuat[float, float]) – allowed divergence for coord and quat
norm_ord (int or numpy inf) – order of the distance/norm used to create the hypersphere.
- Returns:
Futhest point on the start-end segment that is inside the hypersphere of center center and radii radii.
- Return type:
List
[XyzQuat
[NDArray
[Shape
[3
],floating
],quaternion
]]
- motion_stack.core.utils.hypersphere_clamp.clamp_xyz_quat(center, start, end, radii, norm_ord=2)[source]
wrapper for clamp_to_sqewed_hs specialized in one 3D coordinate + one quaternion.
The math for the quaternion is wrong (lerp instead of slerp). So: Center and start quat should not be opposite from each-other. Precision goes down if they are far appart. But it’s not so bad.
- Parameters:
center (XyzQuat[NDArray[Shape[3], floating], quaternion]) – center from which not to diverge
start (XyzQuat[NDArray[Shape[3], floating], quaternion]) – start point of the interpolation
end (XyzQuat[NDArray[Shape[3], floating], quaternion]) – end point of the interpolation
radii (XyzQuat[float, float]) – allowed divergence for coord and quat
norm_ord (int or numpy inf) – order of the distance/norm used to create the hypersphere.
- Returns:
Futhest point on the start-end segment that is inside the hypersphere of center center and radii radii.
- Return type:
XyzQuat
[NDArray
[Shape
[3
],floating
],quaternion
]
motion_stack.core.utils.joint_mapper module
- motion_stack.core.utils.joint_mapper.operate_sub_shapers(shaper1, shaper2, op)[source]
- Return type:
Optional
[Callable
[[float
],float
]]- Parameters:
shaper1 (Callable[[float], float] | None)
shaper2 (Callable[[float], float] | None)
op (Callable[[float, float], float])
- motion_stack.core.utils.joint_mapper.eggify_shapers(inner, outer)[source]
- Return type:
Optional
[Callable
[[float
],float
]]- Parameters:
inner (Callable[[float], float] | None)
outer (Callable[[float], float] | None)
- class motion_stack.core.utils.joint_mapper.Shaper(position=None, velocity=None, effort=None)[source]
Bases:
object
Holds and applies functions to position, velocity and effort fields.
If None, the indentity is used.
- Parameters:
position (Callable[[float], float] | None)
velocity (Callable[[float], float] | None)
effort (Callable[[float], float] | None)
- position = None
Type:
Optional
[Callable
[[float
],float
]]
- velocity = None
Type:
Optional
[Callable
[[float
],float
]]
- effort = None
Type:
Optional
[Callable
[[float
],float
]]
- motion_stack.core.utils.joint_mapper.reverse_dict(d)[source]
- Return type:
Dict
- Parameters:
d (Dict)
- motion_stack.core.utils.joint_mapper.remap_names(states, mapping)[source]
- Parameters:
states (List[JState])
mapping (Dict[str, str])
motion_stack.core.utils.joint_state module
- class motion_stack.core.utils.joint_state.JState(name, time=None, position=None, velocity=None, effort=None)[source]
Bases:
object
- Parameters:
name (str)
time (Time | None)
position (float | None)
velocity (float | None)
effort (float | None)
- name
Type:
str
- position = None
Type:
Optional
[float
]
- velocity = None
Type:
Optional
[float
]
- effort = None
Type:
Optional
[float
]
- getattr(name: Literal['name']) str [source]
- getattr(name: Literal['time']) motion_stack.core.utils.time.Time
- getattr(name: Literal['position', 'velocity', 'effort']) float
- getattr(name)
- Return type:
Any
- Parameters:
name (str)
- property is_initialized
bool
- Type:
rtype
- motion_stack.core.utils.joint_state.js_from_dict_list(dil)[source]
- Return type:
List
[JState
]- Parameters:
dil (Dict[Literal['position', 'velocity', 'effort', 'name', 'time'], ~typing.List])
motion_stack.core.utils.math module
motion_stack.core.utils.pose module
- motion_stack.core.utils.pose.T1 = TypeVar(T1)
Type:
TypeVar
Invariant
TypeVar
.
- motion_stack.core.utils.pose.T2 = TypeVar(T2)
Type:
TypeVar
Invariant
TypeVar
.
- class motion_stack.core.utils.pose.XyzQuat(xyz, quat)[source]
-
Tuplelike containing spatial and rotation data
- Parameters:
xyz (T1)
quat (T2)
- class motion_stack.core.utils.pose.Pose(time, xyz, quat)[source]
Bases:
object
- Parameters:
time (Time)
xyz (NDArray[Shape[3], floating])
quat (quaternion)
- xyz
Type:
NDArray
[Shape
[3
],floating
]
- quat
Type:
quaternion
motion_stack.core.utils.printing module
- class motion_stack.core.utils.printing.TCOL[source]
Bases:
object
Colors for the terminal
- HEADER = '\x1b[95m'
Type:
str
- OKBLUE = '\x1b[94m'
Type:
str
- OKCYAN = '\x1b[96m'
Type:
str
- OKGREEN = '\x1b[92m'
Type:
str
- WARNING = '\x1b[33;20m'
Type:
str
- FAIL = '\x1b[91m'
Type:
str
- ENDC = '\x1b[0m'
Type:
str
- BOLD = '\x1b[1m'
Type:
str
- UNDERLINE = '\x1b[4m'
Type:
str
- motion_stack.core.utils.printing.list_cyanize(l, default_color=None)[source]
Makes each element of a list cyan.
- Parameters:
l (Iterable) – Iterable
default_color (str | None) – color to go back to outise of the cyan
- Return type:
str
Returns:
- Return type:
str
- Parameters:
l (Iterable)
default_color (str | None)
motion_stack.core.utils.robot_parsing module
Uses rtb to parse the robot URDF data
- motion_stack.core.utils.robot_parsing.replace_incompatible_char_ros2(string_to_correct)[source]
Sanitizes strings for use by ros2.
replace character that cannot be used for Ros2 Topics by _ inserts “WARN” in front if topic starts with incompatible char
- Return type:
str
- Parameters:
string_to_correct (str)
- motion_stack.core.utils.robot_parsing.get_limit(joint)[source]
Returns the limits of a joint from rtb parsing
- Return type:
Tuple
[float
,float
]- Parameters:
joint (Joint)
- motion_stack.core.utils.robot_parsing.make_ee(ee_string, number_default=0)[source]
- Return type:
Union
[None
,str
,int
]- Parameters:
ee_string (str)
number_default (int)
- motion_stack.core.utils.robot_parsing.joint_by_joint_fk(et_chain, joint_names)[source]
- Return type:
List
[Tuple
[str
,NDArray
]]- Parameters:
et_chain (ETS)
joint_names (List[str])
- motion_stack.core.utils.robot_parsing.load_set_urdf_raw(urdf, end_effector_name=None, start_effector_name=None)[source]
Enables calling load_set_urdf with the full urdf string instead of the path
- Return type:
Tuple
[Robot
,ETS
,List
[str
],List
[Joint
],Optional
[Link
]]- Parameters:
urdf (str)
end_effector_name (str | int | None)
start_effector_name (str | None)
- motion_stack.core.utils.robot_parsing.load_set_urdf(urdf_path, end_effector_name=None, start_effector_name=None)[source]
I am so sorry. This works to parse the urdf I don’t have time to explain
Note
will change, I hate this
This is terrible and still in the code
- Parameters:
urdf_path (str)
end_effector_name (str | int | None)
start_effector_name (str | None)
- Return type:
Tuple[Robot, ETS, List[str], List[Joint], Link | None]
Returns:
- Return type:
Tuple
[Robot
,ETS
,List
[str
],List
[Joint
],Optional
[Link
]]- Parameters:
urdf_path (str)
end_effector_name (str | int | None)
start_effector_name (str | None)
motion_stack.core.utils.static_executor module
- motion_stack.core.utils.static_executor.extract_inner_type(list_type)[source]
Extracts the inner type from a typing.List, such as List[float].
- Parameters:
list_type (
type
) – A type hint, e.g., List[float].- Returns:
The inner type of the list, e.g., float.