Fix the list of box filter sizes

According to the original paper of SURF, the list of box filter sizes is as follows : 
Octave 4 : 51, 99, 147, 195
Octave 3 : 27, 51, 75, 99
Octave 2 : 15, 27, 39, 51
Octave 1 : 9, 15, 21, 27
However, OpenCV SURF implementation has resulted in different values : 
Octave 4 : 72, 120, 168, 216
Octave 3 : 36, 60, 84, 108
Octave 2 : 18, 30, 42, 54
Octave 1 : 9, 15, 21, 27
pull/2401/head
Eunhee Cho 5 years ago committed by GitHub
parent 648db235cd
commit a7034bf9e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      modules/xfeatures2d/src/surf.cpp

@ -485,6 +485,7 @@ static void fastHessianDetector( const Mat& sum, const Mat& mask_sum, std::vecto
// Allocate space and calculate properties of each layer
int index = 0, middleIndex = 0, step = SAMPLE_STEP0;
int octave_mask = SURF_HAAR_SIZE0;
for( int octave = 0; octave < nOctaves; octave++ )
{
@ -493,7 +494,7 @@ static void fastHessianDetector( const Mat& sum, const Mat& mask_sum, std::vecto
/* The integral image sum is one pixel bigger than the source image*/
dets[index].create( (sum.rows-1)/step, (sum.cols-1)/step, CV_32F );
traces[index].create( (sum.rows-1)/step, (sum.cols-1)/step, CV_32F );
sizes[index] = (SURF_HAAR_SIZE0 + SURF_HAAR_SIZE_INC*layer) << octave;
sizes[index] = octave_mask + (SURF_HAAR_SIZE_INC*layer<<(octave));
sampleSteps[index] = step;
if( 0 < layer && layer <= nOctaveLayers )
@ -501,6 +502,7 @@ static void fastHessianDetector( const Mat& sum, const Mat& mask_sum, std::vecto
index++;
}
step *= 2;
octave_mask += SURF_HAAR_SIZE_INC<<octave;
}
// Calculate hessian determinant and trace samples in each layer

Loading…
Cancel
Save