Commit a324c6c6 authored by cbalint13's avatar cbalint13

Refactor DAISY for more opencv style.

parent 309274a4
...@@ -222,36 +222,36 @@ public: ...@@ -222,36 +222,36 @@ public:
/** /**
* @param y position y on image * @param y position y on image
* @param x position x on image * @param x position x on image
* @param orientation orientation on image (0->360) * @param ori orientation on image (0->360)
* @param descriptor supplied array for descriptor storage * @param descriptor supplied array for descriptor storage
*/ */
virtual void get_descriptor( double y, double x, int orientation, float* descriptor ) const = 0; virtual void GetDescriptor( double y, double x, int orientation, float* descriptor ) const = 0;
/** /**
* @param y position y on image * @param y position y on image
* @param x position x on image * @param x position x on image
* @param orientation 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 descriptor supplied array for descriptor storage
* @param H homography matrix for warped grid
*/ */
virtual bool get_descriptor( double y, double x, int orientation, double* H, float* descriptor ) const = 0; virtual bool GetDescriptor( double y, double x, int orientation, float* descriptor, double* H ) const = 0;
/** /**
* @param y position y on image * @param y position y on image
* @param x position x on image * @param x position x on image
* @param orientation orientation on image (0->360) * @param ori orientation on image (0->360)
* @param descriptor supplied array for descriptor storage * @param descriptor supplied array for descriptor storage
*/ */
virtual void get_unnormalized_descriptor( double y, double x, int orientation, float* descriptor ) const = 0; virtual void GetUnnormalizedDescriptor( double y, double x, int orientation, float* descriptor ) const = 0;
/** /**
* @param y position y on image * @param y position y on image
* @param x position x on image * @param x position x on image
* @param orientation 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 descriptor supplied array for descriptor storage
* @param H homography matrix for warped grid
*/ */
virtual bool get_unnormalized_descriptor( double y, double x, int orientation, double* H, float* descriptor ) const = 0; virtual bool GetUnnormalizedDescriptor( double y, double x, int orientation, float* descriptor , double *H ) const = 0;
}; };
......
This diff is collapsed.
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