-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lereljic/segformer-semantic-segmentation' of github.com…
…:WATonomous/wato_monorepo into lereljic/segformer-semantic-segmentation
- Loading branch information
Showing
106 changed files
with
2,519 additions
and
358 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 |
---|---|---|
|
@@ -6,3 +6,5 @@ code_server_config/*/start_code_server.sh | |
.env | ||
.vscode/ | ||
ssh_config/ | ||
|
||
watod-config.local.sh |
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,3 @@ | ||
[submodule "src/perception/lane_detection/src/lane_detection_tensorrt"] | ||
path = src/perception/lane_detection/src/lane_detection_tensorrt | ||
url = [email protected]:WATonomous/lane_detection_tensorrt.git |
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
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
55 changes: 0 additions & 55 deletions
55
docker/perception/traffic_sign_detection/traffic_sign_detection.Dockerfile
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
docker/simulation/carla_notebooks/carla_notebooks.Dockerfile
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,23 @@ | ||
ARG CARLA_VERSION=0.9.13 | ||
FROM carlasim/carla:${CARLA_VERSION} AS wato_carla_api | ||
|
||
FROM python:3.8.16-slim-bullseye | ||
ARG CARLA_VERSION=0.9.13 | ||
|
||
RUN pip3 install carla==${CARLA_VERSION} jupyter tensorflow-probability | ||
RUN apt-get update && apt-get install -y curl git wget unzip && apt remove python3-networkx | ||
|
||
COPY --from=wato_carla_api --chown=root /home/carla/PythonAPI/carla/agents /usr/local/lib/python3.8/site-packages/agents | ||
|
||
WORKDIR /home/bolty/carla_notebooks | ||
COPY src/simulation/carla_notebooks /home/bolty/carla_notebooks | ||
|
||
WORKDIR /home/bolty | ||
# Setup CARLA Scenario Runner | ||
# The last sed command replaces hero (default ego vehicle name) with another ego vehicle name | ||
RUN git clone https://github.com/carla-simulator/scenario_runner.git && \ | ||
cd scenario_runner && pip3 install -r requirements.txt && \ | ||
sed -i s/hero/ego/g /home/bolty/scenario_runner/srunner/tools/scenario_parser.py | ||
WORKDIR /home/bolty | ||
|
||
WORKDIR /home/bolty/carla_notebooks |
Oops, something went wrong.