Merge pull request #3178 from jimcamel:freak_sse_bugfix

This commit is contained in:
Vadim Pisarevsky 2014-09-01 06:15:36 +00:00
commit fd7a2defae

View File

@ -394,7 +394,7 @@ void FREAK::computeImpl( const Mat& image, std::vector<KeyPoint>& keypoints, Mat
(*ptr) = result128;
++ptr;
}
ptr -= 8;
ptr -= (FREAK_NB_PAIRS/128)*2;
#else
// extracting descriptor preserving the order of SSE version
int cnt = 0;