Commit 25213d88 authored by Andrey Kamaev's avatar Andrey Kamaev

fixed compilation problems with new SIFT on Android

parent 29b45e70
......@@ -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 ) ;
......
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