Initial commit of the KAZE & AKAZE docs

This commit is contained in:
Ievgen Khvedchenia
2014-05-09 19:35:41 +03:00
parent b42c268164
commit c4e49463a9
3 changed files with 77 additions and 4 deletions

View File

@@ -60,8 +60,8 @@ namespace cv
{
}
AKAZE::AKAZE(DESCRIPTOR_TYPE _descriptor, int _descriptor_size, int _descriptor_channels)
: descriptor(_descriptor)
AKAZE::AKAZE(DESCRIPTOR_TYPE descriptor_type, int _descriptor_size, int _descriptor_channels)
: descriptor(descriptor_type)
, descriptor_channels(_descriptor_channels)
, descriptor_size(_descriptor_size)
{

View File

@@ -59,8 +59,8 @@ namespace cv
{
}
KAZE::KAZE(DESCRIPTOR_TYPE type, bool _extended, bool _upright)
: descriptor(type)
KAZE::KAZE(DESCRIPTOR_TYPE descriptor_type, bool _extended, bool _upright)
: descriptor(descriptor_type)
, extended(_extended)
, upright(_upright)
{