-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #299 from leggedrobotics/dev/sim_jackal_example
Jackal example and docker container
- Loading branch information
Showing
39 changed files
with
1,557 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: "3.9" | ||
services: | ||
wvn: | ||
wvn_nvidia: | ||
extends: | ||
file: docker-compose-gui.yaml | ||
service: wvn | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
version: "3.9" | ||
services: | ||
wvn: | ||
wvn_nvidia: | ||
extends: | ||
file: docker-compose.yaml | ||
service: wvn | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Wild Visual Navigation Sim | ||
|
||
Simulation environment to test Wild Visual Navigation (WVN). We use a modified Clearpath Jackal (adding a camera). | ||
|
||
## Requirements | ||
|
||
|
||
```sh | ||
wget https://packages.clearpathrobotics.com/public.key -O - | sudo apt-key add - | ||
sudo sh -c 'echo "deb https://packages.clearpathrobotics.com/stable/ubuntu $(lsb_release -cs) main" > /etc/apt/sources.list.d/clearpath-latest.list' | ||
sudo apt-get update | ||
``` | ||
|
||
```sh | ||
sudo apt update | ||
sudo apt install -y \ | ||
ros-noetic-jackal-simulator \ | ||
ros-noetic-jackal-desktop \ | ||
ros-noetic-teleop-twist-keyboard \ | ||
ros-noetic-rqt-robot-steering \ | ||
``` | ||
|
||
## Running | ||
|
||
```sh | ||
roslaunch wild_visual_navigation_jackal sim.launch | ||
``` | ||
|
||
```sh | ||
roslaunch wild_visual_navigation_jackal teleop.launch | ||
``` | ||
|
||
```sh | ||
roslaunch wild_visual_navigation_jackal view.launch | ||
``` | ||
|
||
```sh | ||
roslaunch wild_visual_navigation_jackal wild_visual_navigation.launch | ||
``` |
Oops, something went wrong.