Skip to content
Snippets Groups Projects

Matchers

Merged Andreu Corominas-Murtra requested to merge matchers into master
3 files
+ 37
8
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 27
0
 
#ifndef FEATURE_MATCH_H_
 
#define FEATURE_MATCH_H_
 
 
// Wolf includes
 
#include "wolf.h"
 
 
//wolf nampseace
 
namespace wolf {
 
 
/** \brief Match between a feature and a feature
 
*
 
* Match between a feature and a feature (feature-feature correspondence)
 
*
 
**/
 
struct FeatureMatch
 
{
 
FeatureBasePtr feature_ptr_;
 
Scalar normalized_score_;
 
};
 
 
typedef std::map<FeatureBasePtr, FeatureMatch> FeatureMatchMap;
 
 
}//end namespace
 
 
#endif
 
 
Loading