2010-05-12 01:44:00 +08:00
|
|
|
/* This is FAST corner detector, contributed to OpenCV by the author, Edward Rosten.
|
|
|
|
Below is the original copyright and the references */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright (c) 2006, 2008 Edward Rosten
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
2012-08-06 19:49:07 +08:00
|
|
|
*Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-08-06 19:49:07 +08:00
|
|
|
*Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-08-06 19:49:07 +08:00
|
|
|
*Neither the name of the University of Cambridge nor the names of
|
|
|
|
its contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
The references are:
|
2012-05-31 16:02:52 +08:00
|
|
|
* Machine learning for high-speed corner detection,
|
2010-05-12 01:44:00 +08:00
|
|
|
E. Rosten and T. Drummond, ECCV 2006
|
|
|
|
* Faster and better: A machine learning approach to corner detection
|
|
|
|
E. Rosten, R. Porter and T. Drummond, PAMI, 2009
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "precomp.hpp"
|
2012-08-23 20:33:11 +08:00
|
|
|
#include "fast_score.hpp"
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-10-23 17:08:43 +08:00
|
|
|
#if defined _MSC_VER
|
|
|
|
# pragma warning( disable : 4127)
|
|
|
|
#endif
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
namespace cv
|
|
|
|
{
|
|
|
|
|
2012-07-31 21:17:58 +08:00
|
|
|
template<int patternSize>
|
|
|
|
void FAST_t(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppression)
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2012-03-15 22:36:01 +08:00
|
|
|
Mat img = _img.getMat();
|
2012-08-06 19:49:07 +08:00
|
|
|
const int K = patternSize/2, N = patternSize + K + 1;
|
|
|
|
#if CV_SSE2
|
|
|
|
const int quarterPatternSize = patternSize/4;
|
2012-10-02 02:28:34 +08:00
|
|
|
(void)quarterPatternSize;
|
2012-08-06 19:49:07 +08:00
|
|
|
#endif
|
2012-07-31 21:17:58 +08:00
|
|
|
int i, j, k, pixel[25];
|
|
|
|
makeOffsets(pixel, (int)img.step, patternSize);
|
2011-10-10 02:15:13 +08:00
|
|
|
|
|
|
|
keypoints.clear();
|
|
|
|
|
|
|
|
threshold = std::min(std::max(threshold, 0), 255);
|
|
|
|
|
|
|
|
#if CV_SSE2
|
2012-03-17 05:21:04 +08:00
|
|
|
__m128i delta = _mm_set1_epi8(-128), t = _mm_set1_epi8((char)threshold), K16 = _mm_set1_epi8((char)K);
|
2012-10-02 02:28:34 +08:00
|
|
|
(void)K16;
|
|
|
|
(void)delta;
|
|
|
|
(void)t;
|
2011-10-10 02:15:13 +08:00
|
|
|
#endif
|
|
|
|
uchar threshold_tab[512];
|
|
|
|
for( i = -255; i <= 255; i++ )
|
|
|
|
threshold_tab[i+255] = (uchar)(i < -threshold ? 1 : i > threshold ? 2 : 0);
|
|
|
|
|
|
|
|
AutoBuffer<uchar> _buf((img.cols+16)*3*(sizeof(int) + sizeof(uchar)) + 128);
|
|
|
|
uchar* buf[3];
|
|
|
|
buf[0] = _buf; buf[1] = buf[0] + img.cols; buf[2] = buf[1] + img.cols;
|
|
|
|
int* cpbuf[3];
|
|
|
|
cpbuf[0] = (int*)alignPtr(buf[2] + img.cols, sizeof(int)) + 1;
|
|
|
|
cpbuf[1] = cpbuf[0] + img.cols + 1;
|
|
|
|
cpbuf[2] = cpbuf[1] + img.cols + 1;
|
|
|
|
memset(buf[0], 0, img.cols*3);
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
for(i = 3; i < img.rows-2; i++)
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2011-10-10 02:15:13 +08:00
|
|
|
const uchar* ptr = img.ptr<uchar>(i) + 3;
|
|
|
|
uchar* curr = buf[(i - 3)%3];
|
|
|
|
int* cornerpos = cpbuf[(i - 3)%3];
|
|
|
|
memset(curr, 0, img.cols);
|
|
|
|
int ncorners = 0;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
if( i < img.rows - 3 )
|
|
|
|
{
|
|
|
|
j = 3;
|
2012-10-01 18:12:19 +08:00
|
|
|
#if CV_SSE2
|
|
|
|
if( patternSize == 16 )
|
|
|
|
{
|
2011-10-10 02:15:13 +08:00
|
|
|
for(; j < img.cols - 16 - 3; j += 16, ptr += 16)
|
|
|
|
{
|
|
|
|
__m128i m0, m1;
|
|
|
|
__m128i v0 = _mm_loadu_si128((const __m128i*)ptr);
|
|
|
|
__m128i v1 = _mm_xor_si128(_mm_subs_epu8(v0, t), delta);
|
|
|
|
v0 = _mm_xor_si128(_mm_adds_epu8(v0, t), delta);
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
__m128i x0 = _mm_sub_epi8(_mm_loadu_si128((const __m128i*)(ptr + pixel[0])), delta);
|
2012-07-31 21:17:58 +08:00
|
|
|
__m128i x1 = _mm_sub_epi8(_mm_loadu_si128((const __m128i*)(ptr + pixel[quarterPatternSize])), delta);
|
|
|
|
__m128i x2 = _mm_sub_epi8(_mm_loadu_si128((const __m128i*)(ptr + pixel[2*quarterPatternSize])), delta);
|
|
|
|
__m128i x3 = _mm_sub_epi8(_mm_loadu_si128((const __m128i*)(ptr + pixel[3*quarterPatternSize])), delta);
|
2011-10-10 02:15:13 +08:00
|
|
|
m0 = _mm_and_si128(_mm_cmpgt_epi8(x0, v0), _mm_cmpgt_epi8(x1, v0));
|
|
|
|
m1 = _mm_and_si128(_mm_cmpgt_epi8(v1, x0), _mm_cmpgt_epi8(v1, x1));
|
|
|
|
m0 = _mm_or_si128(m0, _mm_and_si128(_mm_cmpgt_epi8(x1, v0), _mm_cmpgt_epi8(x2, v0)));
|
|
|
|
m1 = _mm_or_si128(m1, _mm_and_si128(_mm_cmpgt_epi8(v1, x1), _mm_cmpgt_epi8(v1, x2)));
|
|
|
|
m0 = _mm_or_si128(m0, _mm_and_si128(_mm_cmpgt_epi8(x2, v0), _mm_cmpgt_epi8(x3, v0)));
|
|
|
|
m1 = _mm_or_si128(m1, _mm_and_si128(_mm_cmpgt_epi8(v1, x2), _mm_cmpgt_epi8(v1, x3)));
|
|
|
|
m0 = _mm_or_si128(m0, _mm_and_si128(_mm_cmpgt_epi8(x3, v0), _mm_cmpgt_epi8(x0, v0)));
|
|
|
|
m1 = _mm_or_si128(m1, _mm_and_si128(_mm_cmpgt_epi8(v1, x3), _mm_cmpgt_epi8(v1, x0)));
|
|
|
|
m0 = _mm_or_si128(m0, m1);
|
|
|
|
int mask = _mm_movemask_epi8(m0);
|
|
|
|
if( mask == 0 )
|
|
|
|
continue;
|
|
|
|
if( (mask & 255) == 0 )
|
|
|
|
{
|
|
|
|
j -= 8;
|
|
|
|
ptr -= 8;
|
|
|
|
continue;
|
|
|
|
}
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
__m128i c0 = _mm_setzero_si128(), c1 = c0, max0 = c0, max1 = c0;
|
|
|
|
for( k = 0; k < N; k++ )
|
|
|
|
{
|
|
|
|
__m128i x = _mm_xor_si128(_mm_loadu_si128((const __m128i*)(ptr + pixel[k])), delta);
|
|
|
|
m0 = _mm_cmpgt_epi8(x, v0);
|
|
|
|
m1 = _mm_cmpgt_epi8(v1, x);
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
c0 = _mm_and_si128(_mm_sub_epi8(c0, m0), m0);
|
|
|
|
c1 = _mm_and_si128(_mm_sub_epi8(c1, m1), m1);
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
max0 = _mm_max_epu8(max0, c0);
|
|
|
|
max1 = _mm_max_epu8(max1, c1);
|
|
|
|
}
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
max0 = _mm_max_epu8(max0, max1);
|
|
|
|
int m = _mm_movemask_epi8(_mm_cmpgt_epi8(max0, K16));
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
for( k = 0; m > 0 && k < 16; k++, m >>= 1 )
|
|
|
|
if(m & 1)
|
|
|
|
{
|
|
|
|
cornerpos[ncorners++] = j+k;
|
|
|
|
if(nonmax_suppression)
|
2012-07-31 21:17:58 +08:00
|
|
|
curr[j+k] = (uchar)cornerScore<patternSize>(ptr+k, pixel, threshold);
|
2011-10-10 02:15:13 +08:00
|
|
|
}
|
|
|
|
}
|
2012-10-01 18:12:19 +08:00
|
|
|
}
|
2011-10-10 02:15:13 +08:00
|
|
|
#endif
|
|
|
|
for( ; j < img.cols - 3; j++, ptr++ )
|
|
|
|
{
|
|
|
|
int v = ptr[0];
|
|
|
|
const uchar* tab = &threshold_tab[0] - v + 255;
|
|
|
|
int d = tab[ptr[pixel[0]]] | tab[ptr[pixel[8]]];
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
if( d == 0 )
|
|
|
|
continue;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
d &= tab[ptr[pixel[2]]] | tab[ptr[pixel[10]]];
|
|
|
|
d &= tab[ptr[pixel[4]]] | tab[ptr[pixel[12]]];
|
|
|
|
d &= tab[ptr[pixel[6]]] | tab[ptr[pixel[14]]];
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
if( d == 0 )
|
|
|
|
continue;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
d &= tab[ptr[pixel[1]]] | tab[ptr[pixel[9]]];
|
|
|
|
d &= tab[ptr[pixel[3]]] | tab[ptr[pixel[11]]];
|
|
|
|
d &= tab[ptr[pixel[5]]] | tab[ptr[pixel[13]]];
|
|
|
|
d &= tab[ptr[pixel[7]]] | tab[ptr[pixel[15]]];
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
if( d & 1 )
|
|
|
|
{
|
|
|
|
int vt = v - threshold, count = 0;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
for( k = 0; k < N; k++ )
|
|
|
|
{
|
|
|
|
int x = ptr[pixel[k]];
|
|
|
|
if(x < vt)
|
|
|
|
{
|
|
|
|
if( ++count > K )
|
|
|
|
{
|
|
|
|
cornerpos[ncorners++] = j;
|
|
|
|
if(nonmax_suppression)
|
2012-07-31 21:17:58 +08:00
|
|
|
curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold);
|
2011-10-10 02:15:13 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
}
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
if( d & 2 )
|
|
|
|
{
|
|
|
|
int vt = v + threshold, count = 0;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
for( k = 0; k < N; k++ )
|
|
|
|
{
|
|
|
|
int x = ptr[pixel[k]];
|
|
|
|
if(x > vt)
|
|
|
|
{
|
|
|
|
if( ++count > K )
|
|
|
|
{
|
|
|
|
cornerpos[ncorners++] = j;
|
|
|
|
if(nonmax_suppression)
|
2012-07-31 21:17:58 +08:00
|
|
|
curr[j] = (uchar)cornerScore<patternSize>(ptr, pixel, threshold);
|
2011-10-10 02:15:13 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
cornerpos[-1] = ncorners;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
if( i == 3 )
|
|
|
|
continue;
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
const uchar* prev = buf[(i - 4 + 3)%3];
|
|
|
|
const uchar* pprev = buf[(i - 5 + 3)%3];
|
|
|
|
cornerpos = cpbuf[(i - 4 + 3)%3];
|
|
|
|
ncorners = cornerpos[-1];
|
2012-05-31 16:02:52 +08:00
|
|
|
|
2011-10-10 02:15:13 +08:00
|
|
|
for( k = 0; k < ncorners; k++ )
|
|
|
|
{
|
|
|
|
j = cornerpos[k];
|
|
|
|
int score = prev[j];
|
|
|
|
if( !nonmax_suppression ||
|
|
|
|
(score > prev[j+1] && score > prev[j-1] &&
|
|
|
|
score > pprev[j-1] && score > pprev[j] && score > pprev[j+1] &&
|
|
|
|
score > curr[j-1] && score > curr[j] && score > curr[j+1]) )
|
|
|
|
{
|
2011-11-08 20:01:49 +08:00
|
|
|
keypoints.push_back(KeyPoint((float)j, (float)(i-1), 7.f, -1, (float)score));
|
2011-10-10 02:15:13 +08:00
|
|
|
}
|
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
}
|
2012-03-15 22:36:01 +08:00
|
|
|
|
2012-07-31 21:17:58 +08:00
|
|
|
void FAST(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppression, int type)
|
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case FastFeatureDetector::TYPE_5_8:
|
|
|
|
FAST_t<8>(_img, keypoints, threshold, nonmax_suppression);
|
|
|
|
break;
|
|
|
|
case FastFeatureDetector::TYPE_7_12:
|
|
|
|
FAST_t<12>(_img, keypoints, threshold, nonmax_suppression);
|
|
|
|
break;
|
|
|
|
case FastFeatureDetector::TYPE_9_16:
|
2012-11-02 17:16:16 +08:00
|
|
|
#ifdef HAVE_TEGRA_OPTIMIZATION
|
|
|
|
if(tegra::FAST(_img, keypoints, threshold, nonmax_suppression))
|
|
|
|
break;
|
|
|
|
#endif
|
2012-07-31 21:17:58 +08:00
|
|
|
FAST_t<16>(_img, keypoints, threshold, nonmax_suppression);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-08-28 22:15:14 +08:00
|
|
|
|
|
|
|
void FAST(InputArray _img, std::vector<KeyPoint>& keypoints, int threshold, bool nonmax_suppression)
|
|
|
|
{
|
|
|
|
FAST(_img, keypoints, threshold, nonmax_suppression, FastFeatureDetector::TYPE_9_16);
|
|
|
|
}
|
2012-03-15 22:36:01 +08:00
|
|
|
/*
|
|
|
|
* FastFeatureDetector
|
|
|
|
*/
|
|
|
|
FastFeatureDetector::FastFeatureDetector( int _threshold, bool _nonmaxSuppression )
|
2012-07-31 21:17:58 +08:00
|
|
|
: threshold(_threshold), nonmaxSuppression(_nonmaxSuppression), type(FastFeatureDetector::TYPE_9_16)
|
2012-03-15 22:36:01 +08:00
|
|
|
{}
|
|
|
|
|
2012-07-31 21:17:58 +08:00
|
|
|
FastFeatureDetector::FastFeatureDetector( int _threshold, bool _nonmaxSuppression, int _type )
|
2012-10-09 21:24:37 +08:00
|
|
|
: threshold(_threshold), nonmaxSuppression(_nonmaxSuppression), type((short)_type)
|
2012-07-31 21:17:58 +08:00
|
|
|
{}
|
2012-08-06 19:49:07 +08:00
|
|
|
|
2013-02-25 00:14:01 +08:00
|
|
|
void FastFeatureDetector::detectImpl( const Mat& image, std::vector<KeyPoint>& keypoints, const Mat& mask ) const
|
2012-03-15 22:36:01 +08:00
|
|
|
{
|
|
|
|
Mat grayImage = image;
|
|
|
|
if( image.type() != CV_8U ) cvtColor( image, grayImage, CV_BGR2GRAY );
|
2012-07-31 21:17:58 +08:00
|
|
|
FAST( grayImage, keypoints, threshold, nonmaxSuppression, type );
|
2012-03-15 22:36:01 +08:00
|
|
|
KeyPointsFilter::runByPixelsMask( keypoints, mask );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|