-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb78885
commit 9d02287
Showing
6 changed files
with
25 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# DATMO | ||
Detection and Tracking of Moving Obstacles. |
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,10 +1,6 @@ | ||
# RTLS with Kalman Filter | ||
Here I implement and test different models of Kalman filter. | ||
## Environment | ||
In this module I implement models that generate truth position, velocity and angle of rotation. | ||
# RTLS | ||
Here I implement and test different models of **Kalman filter**. | ||
## Sensors | ||
This module should generate observations of the values that has been generated in environment | ||
module. | ||
This module should simulate sensor observations of the values that has been generated in *env* module. | ||
## Predictive models | ||
I'm going to use simple Kalman filter model that can change value of process variance | ||
depending on that how large aposteri error is. | ||
I'm going to use simple **Kalman filter** model that can change value of *process variance* depending on that how large *aposteri error* is. |
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 @@ | ||
# console |
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,2 +1,2 @@ | ||
# env | ||
Module for simulating environment. | ||
In this module I implement models that generate *truth position*, *velocity* and *angle of rotation*. |
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,8 +1,3 @@ | ||
# The Fuzzy Controller module | ||
The Fuzzy Controller module is used for counting speed of a car according to the distance between it and next and previous | ||
points on the map. | ||
## Overview | ||
In this program we need to pass a value of distance to the input of the fuzzy controller and get a value of speed as an output. | ||
## Plots | ||
Plots are used for only university reports to show that this algorithm is working correctly but in 2D simulation we are not going to use | ||
them. | ||
# fuzzy_controller | ||
The **Fuzzy Controller** module is used for counting speed of a car according to the *distance* between it and *next* and *previous* points on the map. | ||
In this program we need to pass a value of distance to the input of the **fuzzy controller** and get a value of speed as an output. |