Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef MatchHelper_H
00009 #define MatchHelper_H
00010
00011 #include <vector>
00012 #include <list>
00013
00014 #include "../KeyPointExtraction/KeyPoint.h"
00015 #include "../KeyPointExtraction/KeyPointMatch.h"
00016
00022 class MatchHelper
00023 {
00024 public:
00025
00027 MatchHelper();
00028
00030 ~MatchHelper();
00031
00032 static void calcScaleQuotients( std::vector< KeyPoint >* keyPoints1, std::vector< KeyPoint >* keyPoints2, std::list< KeyPointMatch >& matches );
00033
00034 static void calcTurnAngles( std::vector< KeyPoint >* keyPoints1, std::vector< KeyPoint >* keyPoints2, std::list< KeyPointMatch >& matches );
00035
00036 private:
00037
00038 };
00039
00040 #endif