Skip to content

Commit

Permalink
removed unused dependency of boost signals and system
Browse files Browse the repository at this point in the history
  • Loading branch information
cfo committed May 11, 2014
1 parent c664845 commit 8a2bef4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion svo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ FIND_PACKAGE(OpenCV REQUIRED)
FIND_PACKAGE(Eigen REQUIRED)
FIND_PACKAGE(Sophus REQUIRED)
FIND_PACKAGE(fast REQUIRED)
FIND_PACKAGE(Boost REQUIRED COMPONENTS system thread signals)
FIND_PACKAGE(Boost REQUIRED COMPONENTS thread)

# Describe catkin Project
catkin_package(
Expand Down
2 changes: 1 addition & 1 deletion svo/include/svo/point.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Point : boost::noncopyable
static int point_counter_; //!< Counts the number of created points. Used to set the unique id.
int id_; //!< Unique ID of the point.
Vector3d pos_; //!< 3d pos of the point in the world coordinate frame.
Vector3d normal_; //!< Normal of the point
Matrix3d R_w_p_; //!< Orientation of surface patch. Z-axis is the normal. Rotation from (p)oint frame to (w)orld frame.
list<Feature*> obs_; //!< References to keyframes which observe the point.
size_t n_obs_; //!< Number of obervations: Keyframes AND successful reprojections in intermediate frames.
g2oPoint* v_pt_; //!< Temporary pointer to the point-vertex in g2o during bundle adjustment.
Expand Down
2 changes: 0 additions & 2 deletions svo/src/point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ int Point::point_counter_ = 0;
Point::Point(const Vector3d& pos) :
id_(point_counter_++),
pos_(pos),
normal_(Vector3d::Zero()),
n_obs_(0),
v_pt_(NULL),
last_published_ts_(0),
Expand All @@ -41,7 +40,6 @@ Point::Point(const Vector3d& pos) :
Point::Point(const Vector3d& pos, Feature* ftr) :
id_(point_counter_++),
pos_(pos),
normal_(Vector3d::Zero()),
n_obs_(1),
v_pt_(NULL),
last_published_ts_(0),
Expand Down
2 changes: 1 addition & 1 deletion svo_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ FIND_PACKAGE(catkin REQUIRED COMPONENTS
FIND_PACKAGE(OpenCV REQUIRED)
FIND_PACKAGE(Eigen REQUIRED)
FIND_PACKAGE(Sophus REQUIRED)
FIND_PACKAGE(Boost REQUIRED COMPONENTS thread signals)
FIND_PACKAGE(Boost REQUIRED COMPONENTS thread)

# Describe catkin Project
catkin_package(
Expand Down

0 comments on commit 8a2bef4

Please sign in to comment.