Rebase the code, massive cleanups. We still pass QA.

pull/229/head
cbalint13 10 years ago
parent 2d85137ef1
commit 73bed6f3b2
  1. 13
      modules/xfeatures2d/include/opencv2/xfeatures2d.hpp
  2. 1625
      modules/xfeatures2d/src/daisy.cpp

@ -196,7 +196,7 @@ public:
/**
* @param y position y on image
* @param x position x on image
* @param ori orientation on image (0->360)
* @param orientation orientation on image (0->360)
* @param descriptor supplied array for descriptor storage
*/
virtual void get_descriptor( double y, double x, int orientation, float* descriptor ) const = 0;
@ -204,7 +204,7 @@ public:
/**
* @param y position y on image
* @param x position x on image
* @param ori orientation on image (0->360)
* @param orientation orientation on image (0->360)
* @param H homography matrix for warped grid
* @param descriptor supplied array for descriptor storage
* @param get_descriptor true if descriptor was computed
@ -214,7 +214,7 @@ public:
/**
* @param y position y on image
* @param x position x on image
* @param ori orientation on image (0->360)
* @param orientation orientation on image (0->360)
* @param descriptor supplied array for descriptor storage
*/
virtual void get_unnormalized_descriptor( double y, double x, int orientation, float* descriptor ) const = 0;
@ -222,18 +222,13 @@ public:
/**
* @param y position y on image
* @param x position x on image
* @param ori orientation on image (0->360)
* @param orientation orientation on image (0->360)
* @param H homography matrix for warped grid
* @param descriptor supplied array for descriptor storage
* @param get_unnormalized_descriptor true if descriptor was computed
*/
virtual bool get_unnormalized_descriptor( double y, double x, int orientation, double* H, float* descriptor ) const = 0;
/**
* @param image set image as working
*/
virtual void set_image( InputArray image ) = 0;
};

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save