mirror of
https://github.com/opencv/opencv.git
synced 2025-06-10 19:24:07 +08:00
Fix documentation warnings
This commit is contained in:
parent
c4e49463a9
commit
3a8e15fad9
@ -900,7 +900,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
CV_WRAP KAZE();
|
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();
|
virtual ~KAZE();
|
||||||
|
|
||||||
@ -944,7 +944,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
CV_WRAP AKAZE();
|
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();
|
virtual ~AKAZE();
|
||||||
|
|
||||||
|
@ -60,8 +60,8 @@ namespace cv
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
AKAZE::AKAZE(DESCRIPTOR_TYPE descriptor_type, int _descriptor_size, int _descriptor_channels)
|
AKAZE::AKAZE(DESCRIPTOR_TYPE _descriptor_type, int _descriptor_size, int _descriptor_channels)
|
||||||
: descriptor(descriptor_type)
|
: descriptor(_descriptor_type)
|
||||||
, descriptor_channels(_descriptor_channels)
|
, descriptor_channels(_descriptor_channels)
|
||||||
, descriptor_size(_descriptor_size)
|
, descriptor_size(_descriptor_size)
|
||||||
{
|
{
|
||||||
|
@ -59,8 +59,8 @@ namespace cv
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
KAZE::KAZE(DESCRIPTOR_TYPE descriptor_type, bool _extended, bool _upright)
|
KAZE::KAZE(DESCRIPTOR_TYPE _descriptor_type, bool _extended, bool _upright)
|
||||||
: descriptor(descriptor_type)
|
: descriptor(_descriptor_type)
|
||||||
, extended(_extended)
|
, extended(_extended)
|
||||||
, upright(_upright)
|
, upright(_upright)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user