-
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
6d0530c
commit df64718
Showing
6 changed files
with
125 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Project team members: | ||
-871569, Grazioli, Enrico | ||
-868454, Finazzi, Andrea | ||
-865784, Colombo, Marco | ||
|
||
The archive contains the ros package directory "odometry" structured as follows: | ||
-CMakeList.txt: automatically created by ros. It contains all the configurations | ||
used by ros to build the executables of the package such as dependencies, | ||
packege files names etc. | ||
-package.xml: another ros generated file with similar porpouse to the CMakeList file. | ||
-frames.pdf: scheme of the tf tree. | ||
-[dir]msg: contains .msg files used to describe custom messages. | ||
-CustomOdometry.msg: message type published on "custom_odometry" topic. | ||
It contains Odometry.msg information on computed odometry | ||
and a strig specifing the odometry model adopted. | ||
-floatStamped.msg: message type used to read messages generated by the .bag | ||
files provided. | ||
-[dir]src: contains the .cpp source code files | ||
-odometry_node: it's the only source file of the packege and contains the | ||
odometry computation function and all the subscribig/publishing | ||
logic. | ||
-[dir]cfg: | ||
|
||
|
||
Configuration.....finaz | ||
|
||
|
||
Custom messages: | ||
-odometry/floatStamped: | ||
std_msgs/Header header | ||
std_msgs/float64 data | ||
|
||
-odometry/CustomOdometry | ||
std_msgs/String odometryModel | ||
nav_msgs/Odometry odometry | ||
|
||
|
Binary file not shown.
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 @@ | ||
std_msgs/String odometryMode | ||
nav_msgs/Odometry odometry |
This file was deleted.
Oops, something went wrong.
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