Commit 3a8e15fa authored by Ievgen Khvedchenia's avatar Ievgen Khvedchenia

Fix documentation warnings

parent c4e49463
......@@ -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)
{
......
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