gramods
Loading...
Searching...
No Matches
TrackerRegistrationEstimator.hh
1
2#ifndef GM_TRACK_TRACKERREGISTRATIONESTIMATOR
3#define GM_TRACK_TRACKERREGISTRATIONESTIMATOR
4
5#include <gmTrack/PoseSampleCollector.hh>
6
7BEGIN_NAMESPACE_GMTRACK;
8
19 : public PoseSampleCollector {
20
21public:
22
25
31 void addActualPosition(Eigen::Vector3f p);
32
37 void performRegistration();
38
44 bool getRegistration(Eigen::Matrix4f * RAW, Eigen::Matrix4f * UNIT);
45
46 GM_OFI_DECLARE;
47
48private:
49 struct Impl;
50};
51
52END_NAMESPACE_GMTRACK;
53
54#endif
The PoseSampleCollector is a utility for sampling tracker data.
Definition PoseSampleCollector.hh:19
The TrackerRegistrationEstimator is a utility for estimating the base of a tracking system's coordina...
Definition TrackerRegistrationEstimator.hh:19
Definition TrackerRegistrationEstimator.cpp:20