>
== About ==
This is a ros 3rd party package that provides Hauke Strasdat's [[https://github.com/stonier/sophus|sophus]] library.
== Installation From Deb ==
{{{
$ sudo apt-get install ros-kinetic-sophus
}}}
To use it from your own catkin package you need to make sure you get the dependency syntax right. The cmake commands in particular are subtly different from depending on a catkin package. An example:
'''CMakeLists.txt'''
{{{#!highlight cmake
find_package(catkin REQUIRED COMPONENTS
ecl_linear_algebra
ecl_time
dslam_common
)
find_package(sophus REQUIRED)
catkin_package(
INCLUDE_DIRS include
LIBRARIES ${PROJECT_NAME}
DEPENDS
sophus
CATKIN_DEPENDS
ecl_linear_algebra
ecl_time
dslam_common
)
}}}
'''package.xml'''
{{{#!highlight xml
ecl_linear_algebra
ecl_time
sophus
dslam_common
ecl_linear_algebra
ecl_time
sophus
dslam_common
}}}
== Installation from Source ==
See the [[https://github.com/stonier/sophus|README]].
## AUTOGENERATED DON'T DELETE
## CategoryPackage