summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/point_tracker.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-09-06 22:25:36 -0700
committerStanislaw Halik <sthalik@misaki.pl>2014-09-06 22:25:36 -0700
commit8762edd0fa1b9131a7e090f9759aba37d6ec64cf (patch)
treecae8a67a0c48e7f13499cfcf6c8f907f1d9a6dca /ftnoir_tracker_pt/point_tracker.h
parent30ffe1f0a349ce23e27c01e9ee898f604d07cec6 (diff)
unbreak build following rename
Diffstat (limited to 'ftnoir_tracker_pt/point_tracker.h')
-rw-r--r--ftnoir_tracker_pt/point_tracker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_tracker_pt/point_tracker.h b/ftnoir_tracker_pt/point_tracker.h
index 11034100..3ff9c724 100644
--- a/ftnoir_tracker_pt/point_tracker.h
+++ b/ftnoir_tracker_pt/point_tracker.h
@@ -12,7 +12,7 @@
#ifndef OPENTRACK_API
# include <boost/shared_ptr.hpp>
#else
-# include "FTNoIR_Tracker_PT/boost-compat.h"
+# include <memory>
#endif
#include <list>
@@ -91,7 +91,7 @@ public:
// f : (focal length)/(sensor width)
// dt : time since last call
bool track(const std::vector<cv::Vec2f>& points, float f, float dt);
- boost::shared_ptr<PointModel> point_model;
+ std::shared_ptr<PointModel> point_model;
bool dynamic_pose_resolution;
float dt_reset;