mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 21:20:18 +08:00
Temporary remove of CV_WRAP
This commit is contained in:
parent
1a5fcd715d
commit
b42c268164
@ -893,15 +893,14 @@ KAZE implementation
|
|||||||
class CV_EXPORTS_W KAZE : public Feature2D
|
class CV_EXPORTS_W KAZE : public Feature2D
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
/// AKAZE Descriptor Type
|
||||||
/// AKAZE Descriptor Type
|
|
||||||
enum DESCRIPTOR_TYPE {
|
enum DESCRIPTOR_TYPE {
|
||||||
DESCRIPTOR_MSURF = 1,
|
DESCRIPTOR_MSURF = 1,
|
||||||
DESCRIPTOR_GSURF = 2
|
DESCRIPTOR_GSURF = 2
|
||||||
};
|
};
|
||||||
|
|
||||||
CV_WRAP KAZE();
|
CV_WRAP KAZE();
|
||||||
CV_WRAP explicit KAZE(DESCRIPTOR_TYPE type, bool _extended, bool _upright);
|
explicit KAZE(DESCRIPTOR_TYPE descriptor_type, bool _extended, bool _upright);
|
||||||
|
|
||||||
virtual ~KAZE();
|
virtual ~KAZE();
|
||||||
|
|
||||||
@ -945,7 +944,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
CV_WRAP AKAZE();
|
CV_WRAP AKAZE();
|
||||||
CV_WRAP explicit AKAZE(DESCRIPTOR_TYPE _descriptor, int _descriptor_size = 0, int _descriptor_channels = 3);
|
explicit AKAZE(DESCRIPTOR_TYPE descriptor_type, int _descriptor_size = 0, int _descriptor_channels = 3);
|
||||||
|
|
||||||
virtual ~AKAZE();
|
virtual ~AKAZE();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user