Fast-Perching presents a novel trajectory planning method for real-time aerial perching, which adaptively adjusts terminal states and the trajectory duration. This feature is especially notable on micro aerial robots with low maneuverability or scenarios where the space is not enough.
Authors: Jialin Ji, Tiankai Yang and Fei Gao from the ZJU Fast Lab.
Paper: Real-Time Trajectory Planning for Aerial Perching, Jialin Ji, Tiankai Yang, Chao Xu, Fei Gao, Accepted in IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS 2022).
Video Links: bilibili
Preparation and visualization:
git clone https://github.com/ZJU-FAST-Lab/Fast-Perching
cd Fast-Perching
catkin_make
source devel/setup.zsh
chmod +x sh_utils/pub_triger.sh
roslaunch planning perching.launch
Start the perching planner:
./sh_utils/pub_triger.sh
Change the position, veliocity and orientation of the landing plate:
<!-- DIR: src/planning/launch/perching.launch -->
<param name="perching_px" value=""/>
<param name="perching_py" value=""/>
<param name="perching_pz" value=""/>
<param name="perching_vx" value=""/>
<param name="perching_vy" value=""/>
<param name="perching_vz" value=""/>
<param name="perching_axis_x" value=""/>
<param name="perching_axis_y" value=""/>
<param name="perching_axis_z" value=""/>
<param name="perching_theta" value=""/>
Enable replan module of the planner:
<!-- DIR: src/planning/launch/perching.launch -->
<param name="replan" value="true"/>
Enable pause debug module of the planner:
<!-- DIR: src/planning/launch/perching.launch -->
<param name="pause_debug" value="true"/>
We use MINCO as our trajectory representation.