Skip to content

Commit 87ddd36

Browse files
authored
Merge pull request #73 from mohitk3000/feature-mpc_path_tracking
[New Feature] Model Predictive Control(MPC) for Path Tracking
2 parents cdc9354 + 3387824 commit 87ddd36

7 files changed

Lines changed: 599 additions & 1 deletion

File tree

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,10 @@ WORKDIR $WORKDIR
3030
RUN python -m pip install --upgrade --user pip
3131
RUN python -m pip install --upgrade --user setuptools
3232

33+
# Install do-mpc + CasADi
34+
RUN pip install --no-cache-dir \
35+
casadi>=3.6.5 \
36+
do-mpc>=4.6.4
37+
3338
COPY requirements.txt $WORKDIR
3439
RUN python -m pip install --user -r requirements.txt

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,8 @@ Planning
167167
![](src/simulations/path_tracking/stanley_path_tracking/stanley_path_tracking.gif)
168168
#### MPPI Path Tracking
169169
![](src/simulations/path_tracking/mppi_path_tracking/mppi_path_tracking.gif)
170+
#### MPC Path Tracking
171+
![](src/simulations/path_tracking/mpc_path_tracking/mpc_path_tracking.gif)
170172
### Perception
171173
#### Rectangle fitting Detection
172174
![](src/simulations/perception/point_cloud_rectangle_fitting/point_cloud_rectangle_fitting.gif)

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ pandas
44
scipy
55
seaborn
66
pytest
7-
pytest-cov
7+
pytest-cov
8+
casadi
9+
do-mpc

0 commit comments

Comments
 (0)