Efficient and Safe Trajectory (EAST) Planner for Autonomous Agricultural Vehicle Headland Turning in Cluttered Orchard Environments
-
[July 3, 2025] We have released our codebase!
-
[January 27, 2025] Our paper "Efficient and Safe Trajectory Planning for Autonomous Agricultural Vehicle Headland Turning in Cluttered Orchard Environments" has been published in IEEE Robotics and Automation Letters (RA-L).
This repository introduces a novel method for efficient and safe trajectory planning for agricultural vehicles performing headland turning in cluttered orchard environments. Both the environment and the vehicle (including its implement) are modeled using convex polygons. The planning algorithm is implemented in C++, and the Python bindings of the core functions are provided using pybind11.
- An efficient way of modeling the vehicle's configuration space and implemented a fast way to do the collision checking.
- Use combinatoral safe corridors to express the manuvering space of the vehicle, as well as its added on implements.
- A differential based method was applied to solve the path planning problem online.
- The vehicle (w/o implement) is modeled with rectangles covered by circles.
- Expanding the polygon geometry
- Searching result for a test case
For the back end smoothing, we applied combined corridors for represent the feasibility constraints. In this way, the path can be smoothed in the constrained area.
If you have any questions, feel free to contact us: Peng Wei and Chen Peng.
Here's how to install the project, following the steps you provided:
git clone https://github.com/AgRoboticsResearch/east_planner.gitpip install -r requirements.txtgit submodule update --init# Update package lists
sudo apt update
# Install Eigen3 and OMPL development libraries
sudo apt install libeigen3-dev libompl-dev
# Install YAML-CPP development library
sudo apt install libyaml-cpp-dev
# Install essential build tools
sudo apt install build-essential cmake libssl-dev python3-pippip3 install scikit-build# Navigate back to the MincoCar directory
cd MincoCar
pip3 install .After installation, you can verify that everything works correctly by running an example:
# Navigate to the example directory
cd example/
# Run the provided example script
python3 east_planner_example.pyThis will run a basic demonstration of the planner. For more comprehensive examples and tests, please explore the MincoCar/test/ directory.
If you find this work useful for your own research, please cite the following:
@article{Wei_2025,
title={Efficient and Safe Trajectory Planning for Autonomous Agricultural Vehicle Headland Turning in Cluttered Orchard Environments},
author={Wei, Peng and Peng, Chen and Lu, Wenwu and Zhu, Yuankai and Vougioukas, Stavros and Fei, Zhenghao and Ge, Zhikang},
journal={IEEE Robotics and Automation Letters},
year={2025},
volume={10},
number={3},
pages={2574-2581},
doi={10.1109/LRA.2025.3534056}
}We gratefully acknowledge the use of the following open-source tools:
- pybind11 — for Python bindings of C++ modules.
- qpOASES — for solving quadratic programming (QP) problems
- Dftpav — for building safety corridor
This project is released under the Apache License 2.0 License.





