From b42c26816431dc449ea5354eb15d4c82604b3ac6 Mon Sep 17 00:00:00 2001 From: Ievgen Khvedchenia Date: Fri, 9 May 2014 19:34:54 +0300 Subject: [PATCH] Temporary remove of CV_WRAP --- modules/features2d/include/opencv2/features2d.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/features2d/include/opencv2/features2d.hpp b/modules/features2d/include/opencv2/features2d.hpp index f3ff13aaad..87d7caff92 100644 --- a/modules/features2d/include/opencv2/features2d.hpp +++ b/modules/features2d/include/opencv2/features2d.hpp @@ -893,15 +893,14 @@ KAZE implementation class CV_EXPORTS_W KAZE : public Feature2D { public: - - /// AKAZE Descriptor Type + /// AKAZE Descriptor Type enum DESCRIPTOR_TYPE { DESCRIPTOR_MSURF = 1, DESCRIPTOR_GSURF = 2 }; 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(); @@ -945,7 +944,7 @@ public: }; 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();