diff --git a/modules/features2d/src/sift.cpp b/modules/features2d/src/sift.cpp index 8d5831d69d..0f961d88a4 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 ) ;