From 25213d88a8f4791924ab6680b57de6590078a090 Mon Sep 17 00:00:00 2001 From: Andrey Kamaev Date: Wed, 1 Jun 2011 12:42:44 +0000 Subject: [PATCH] fixed compilation problems with new SIFT on Android --- modules/features2d/src/sift.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/features2d/src/sift.cpp b/modules/features2d/src/sift.cpp index 8d5831d..0f961d8 100644 --- a/modules/features2d/src/sift.cpp +++ b/modules/features2d/src/sift.cpp @@ -1450,10 +1450,10 @@ SIFT::DescriptorParams SIFT::getDescriptorParams () const struct SiftParams { - SiftParams( int _O, int _S ) + SiftParams( int argO, int argS ) { - O = _O; - S = _S; + O = argO; + S = argS; sigma0 = 1.6 * powf(2.0f, 1.0f / S ) ; -- 2.7.4