Autoware Launch GUI is a Tauri / NextJS application designed to simplify the process of Launching Autoware Processes. Instead of relying on command prompts, users can now utilize a user-friendly graphical interface.
Autoware Launch GUI offers a range of features to enhance your experience with Autoware:
- Launch Autoware with Custom Parameters: Easily launch Autoware processes with parameters tailored to your needs.
- Real-Time Monitoring: View current CPU/Memory usage and Autoware logs in real-time, with search and highlighting capabilities (INFO, WARN, DEBUG, ERROR, by component).
- Profile Management: Save and load your most-used Autoware launch profiles for quick access.
- Configurations and Calibration: Edit config params YAML files and launch calibration tools with custom parameters.
- Bag File Management: Play, record, and view information of bag files (.db3, .mcap) with custom parameters.
- Topic Management: View topic list, topic types, and topic echo output.
- Remote Operation: Use SSH to launch Autoware on a remote machine with custom parameters.
To run the .deb file directly you will need to first check if these dependencies are installed.
sudo apt install libwebkit2gtk-4.1-0 libjavascriptcoregtk-4.1-0 libsoup-3.0-0 libsoup-3.0-common
To develop the Autoware Launch GUI, you'll need to have both Rust and Node.js installed on your system.
-
To install Rust, run the following command:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs/ | sh
-
Follow the on-screen instructions to complete the installation.
-
Once installed, you can verify your Rust installation with:
rustc --version
rustc 1.72.0 (5680fa18f 2023-08-23) is the one i'm currently on while developping this.
-
You can download and install Node.js (LTS Version) from the official website.
-
Alternatively, if you're using a package manager like
apt
for Ubuntu/Debian, you can install Node.js with:-
For Ubuntu/Debian:
sudo apt update sudo apt install nodejs
-
-
Verify your Node.js installation with:
node --version
v16.20.0 is the one i'm currently on while developping this.
-
It's also recommended to install
pnpm
as it's not included:npm install -g pnpm
Once Rust and Node.js are set up, you can proceed with the Installation steps mentioned above.
For most users, the easiest way to get started is by downloading and installing the provided .deb
file.
It can be found on the releases for this repo at this link Releases
If you're interested in developing additional features or want to run the project from source:
-
Clone the repository:
git clone https://github.com/leo-drive/autoware-launch-gui.git
-
Navigate to the project directory:
cd autoware-launch-gui
-
Install the required packages:
pnpm i
-
Run the development version of the app:
pnpm tauri dev
For a comprehensive guide on how to use the Autoware Launch GUI, please refer to our demo video. In essence, the process involves:
-
Launching the app.
-
Setting the path to the Autoware folder.
-
Selecting the desired launch file located in the
src/launcher/autoware_launch/autoware_launch/launch
folder. -
Adding the necessary parameters, and any extra parameters you'd like to include in your launch command.
-
Launch Autoware
-
Separately, you can also edit config param yaml files located in the
src/launcher/autoware_launch/autoware_launch/config
folder.
- Launch Autoware with Custom Parameters depending on the selected launch file
- Kill Autoware Processes
- Edit Config Params YAML Files
- View Current CPU/Memory Usage
- Save and Load Most used Autoware Launch Profiles
- View Autoware Logs in Real Time with ability to search with highliting (INFO, WARN, DEBUG, ERROR, by component)
- Launch Calibration Tools with Custom Parameters
- Play bag files (.db3, .mcap) with custom parameters(flags)
- See bag file info
- Record bag files (.db3, .mcap) with custom parameters(flags)
- View Topic List and Topic Types
- View Topic Echo Output
- Save and Load most used Profiles with your autoware directories and launch files...
- use SSH to launch autoware on a remote machine with custom parameters
We welcome contributions from the community! If you're interested in enhancing the Autoware Launch GUI, please follow the installation instructions for developers and feel free to submit pull requests.
Khalil Selyan - Creator and maintainer of Autoware Launch GUI.
- GitHub: https://github.com/khalilselyan
- LinkedIn: https://linkedin.com/in/khalilselyan
- Email: khalil@leodrive.ai
This project is licensed under the MIT License. See the LICENSE file for details.
For common questions and troubleshooting tips, please open an issue on the Issues page.