Fix documentation warnings
This commit is contained in:
@@ -900,7 +900,7 @@ public:
|
||||
};
|
||||
|
||||
CV_WRAP KAZE();
|
||||
explicit KAZE(DESCRIPTOR_TYPE descriptor_type, bool _extended, bool _upright);
|
||||
explicit KAZE(DESCRIPTOR_TYPE descriptor_type, bool extended, bool upright);
|
||||
|
||||
virtual ~KAZE();
|
||||
|
||||
@@ -944,7 +944,7 @@ public:
|
||||
};
|
||||
|
||||
CV_WRAP AKAZE();
|
||||
explicit AKAZE(DESCRIPTOR_TYPE descriptor_type, int _descriptor_size = 0, int _descriptor_channels = 3);
|
||||
explicit AKAZE(DESCRIPTOR_TYPE descriptor_type, int descriptor_size = 0, int descriptor_channels = 3);
|
||||
|
||||
virtual ~AKAZE();
|
||||
|
||||
|
||||
@@ -60,8 +60,8 @@ namespace cv
|
||||
{
|
||||
}
|
||||
|
||||
AKAZE::AKAZE(DESCRIPTOR_TYPE descriptor_type, int _descriptor_size, int _descriptor_channels)
|
||||
: descriptor(descriptor_type)
|
||||
AKAZE::AKAZE(DESCRIPTOR_TYPE _descriptor_type, int _descriptor_size, int _descriptor_channels)
|
||||
: descriptor(_descriptor_type)
|
||||
, descriptor_channels(_descriptor_channels)
|
||||
, descriptor_size(_descriptor_size)
|
||||
{
|
||||
|
||||
@@ -59,8 +59,8 @@ namespace cv
|
||||
{
|
||||
}
|
||||
|
||||
KAZE::KAZE(DESCRIPTOR_TYPE descriptor_type, bool _extended, bool _upright)
|
||||
: descriptor(descriptor_type)
|
||||
KAZE::KAZE(DESCRIPTOR_TYPE _descriptor_type, bool _extended, bool _upright)
|
||||
: descriptor(_descriptor_type)
|
||||
, extended(_extended)
|
||||
, upright(_upright)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user