Commit b2484cfd authored by biagio montesano's avatar biagio montesano

Added edline header

parent dc272c06
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
#include "mihasher.hpp" #include "mihasher.hpp"
#include "sparse_hashtable.hpp" #include "sparse_hashtable.hpp"
#include "types.hpp" #include "types.hpp"
#include "ed_line_detector.hpp"
namespace cv namespace cv
{ {
...@@ -262,13 +263,13 @@ class CV_EXPORTS_W BinaryDescriptorMatcher : public Algorithm ...@@ -262,13 +263,13 @@ class CV_EXPORTS_W BinaryDescriptorMatcher : public Algorithm
void knnMatch( const Mat& queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k, const std::vector<Mat>& masks = std::vector<Mat>(), void knnMatch( const Mat& queryDescriptors, std::vector<std::vector<DMatch> >& matches, int k, const std::vector<Mat>& masks = std::vector<Mat>(),
bool compactResult = false ); bool compactResult = false );
/* for every input desciptor, find all the ones falling in a /* for every input descriptor, find all the ones falling in a
certaing atching radius (for a pair of images) */ certain matching radius (for a pair of images) */
void radiusMatch( const Mat& queryDescriptors, const Mat& trainDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance, void radiusMatch( const Mat& queryDescriptors, const Mat& trainDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance,
const Mat& mask = Mat(), bool compactResult = false ) const; const Mat& mask = Mat(), bool compactResult = false ) const;
/* for every input desciptor, find all the ones falling in a /* for every input descriptor, find all the ones falling in a
certaing atching radius (from one image to a set) */ certain matching radius (from one image to a set) */
void radiusMatch( const Mat& queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance, const std::vector<Mat>& masks = void radiusMatch( const Mat& queryDescriptors, std::vector<std::vector<DMatch> >& matches, float maxDistance, const std::vector<Mat>& masks =
std::vector<Mat>(), std::vector<Mat>(),
bool compactResult = false ); bool compactResult = false );
...@@ -288,7 +289,7 @@ class CV_EXPORTS_W BinaryDescriptorMatcher : public Algorithm ...@@ -288,7 +289,7 @@ class CV_EXPORTS_W BinaryDescriptorMatcher : public Algorithm
/* constructor */ /* constructor */
BinaryDescriptorMatcher(); BinaryDescriptorMatcher();
/* desctructor */ /* destructor */
~BinaryDescriptorMatcher() ~BinaryDescriptorMatcher()
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment