00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef RANSACMULTIFEATURESETMATCHER_H_
00024 #define RANSACMULTIFEATURESETMATCHER_H_
00025
00026 #include <feature/RansacFeatureSetMatcher.h>
00027 #include <utils/PoseEstimation.h>
00028 #include <vector>
00029 #include <utility>
00030
00042 class RansacMultiFeatureSetMatcher: public RansacFeatureSetMatcher {
00043 public:
00054 RansacMultiFeatureSetMatcher(double acceptanceThreshold, double successProbability, double inlierProbability, double distanceThreshold, double rigidityThreshold, bool adaptive = false);
00055
00056 virtual double matchSets(const std::vector<InterestPoint *> &reference, const std::vector<InterestPoint *> &data, OrientedPoint2D& transformation,
00057 std::vector< std::pair<InterestPoint *, InterestPoint *> > &correspondences) const;
00058 };
00059
00060 #endif