Implements saltybot_velocity_smoother package: - Subscribes to /odom, applies digital Butterworth low-pass filter - Filters linear (x,y,z) and angular (x,y,z) velocity components independently - Publishes smoothed odometry on /odom_smooth - Reduces encoder jitter and improves state estimation stability - Configurable filter order (1-4), cutoff frequency (Hz), publish rate - Can be enabled/disabled via enable_smoothing parameter - Comprehensive test suite: 18+ tests covering filter behavior, edge cases, scenarios Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
29 lines
997 B
XML
29 lines
997 B
XML
<?xml version="1.0"?>
|
|
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
|
<package format="3">
|
|
<name>saltybot_velocity_smoother</name>
|
|
<version>0.1.0</version>
|
|
<description>Low-pass Butterworth filter for odometry velocity smoothing to reduce encoder jitter</description>
|
|
|
|
<maintainer email="sl-controls@saltybot.local">SaltyBot Controls</maintainer>
|
|
<license>MIT</license>
|
|
|
|
<author email="sl-controls@saltybot.local">SaltyBot Controls Team</author>
|
|
|
|
<buildtool_depend>ament_cmake</buildtool_depend>
|
|
<buildtool_depend>ament_cmake_python</buildtool_depend>
|
|
|
|
<depend>rclpy</depend>
|
|
<depend>nav_msgs</depend>
|
|
<depend>std_msgs</depend>
|
|
<depend>geometry_msgs</depend>
|
|
|
|
<test_depend>ament_copyright</test_depend>
|
|
<test_depend>ament_flake8</test_depend>
|
|
<test_depend>ament_pep257</test_depend>
|
|
<test_depend>pytest</test_depend>
|
|
|
|
<export>
|
|
<build_type>ament_python</build_type>
|
|
</export>
|
|
</package> |