Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ For the QUALISYS driver, we use the interface from [Qualisys2Ros](https://github
For the rest of the software, the license is Apache 2.0 wherever not specified.

## Compiling
This is a catkin package. Make sure the package is on `ROS_PACKAGE_PATH` after cloning the package to your workspace. Drivers for different motion capture system can be independently compiled.

```
cd your_work_space
catkin_make --pkg mocap_{sys} --cmake-args -DCMAKE_BUILD_TYPE=Release
To compile, simply use `rosdep` and `colcon build` as follows:
```bash
rosdep install --from-paths src -y -i
colcon build --packages-select mocap_base mocap_vicon
```

This will compile the drivers for `{sys}`

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion mocap_base/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<buildtool_depend>ament_cmake</buildtool_depend>
<exec_depend>geometry_msgs</exec_depend>
<exec_depend>rclcpp</exec_depend>
<exec_depend>eigen_conversions</exec_depend>
<!-- <exec_depend>eigen_conversions</exec_depend> -->

<export>
<build_type>ament_cmake</build_type>
Expand Down
6 changes: 3 additions & 3 deletions mocap_vicon/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

<exec_depend>ros2launch</exec_depend>
<exec_depend>geometry_msgs</exec_depend>
<exec_depend>roscpp</exec_depend>
<exec_depend>tf</exec_depend>
<exec_depend>tf_conversions</exec_depend>
<!-- <exec_depend>roscpp</exec_depend> -->
<!-- <exec_depend>tf</exec_depend> -->
<!-- <exec_depend>tf_conversions</exec_depend> -->
<exec_depend>mocap_base</exec_depend>

<export>
Expand Down