brief.cpp 8.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                           License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009-2010, Willow Garage Inc., all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's 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.
//
//   * The name of the copyright holders may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// 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 Intel Corporation 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.
//
//M*/

#include "precomp.hpp"
#include <algorithm>
#include <vector>

#include <iostream>
#include <iomanip>

namespace cv
{
namespace xfeatures2d
{

55 56 57 58 59 60 61 62 63
/*
 * BRIEF Descriptor
 */
class BriefDescriptorExtractorImpl : public BriefDescriptorExtractor
{
public:
    enum { PATCH_SIZE = 48, KERNEL_SIZE = 9 };

    // bytes is a length of descriptor in bytes. It can be equal 16, 32 or 64 bytes.
64
    BriefDescriptorExtractorImpl( int bytes = 32, bool use_orientation = false );
65 66 67 68 69 70 71 72 73 74 75

    virtual void read( const FileNode& );
    virtual void write( FileStorage& ) const;

    virtual int descriptorSize() const;
    virtual int descriptorType() const;
    virtual int defaultNorm() const;

    virtual void compute(InputArray image, std::vector<KeyPoint>& keypoints, OutputArray descriptors);

protected:
76 77
    typedef void(*PixelTestFn)(InputArray, const std::vector<KeyPoint>&, OutputArray, bool use_orientation );

78
    int bytes_;
79
    bool use_orientation_;
80 81 82
    PixelTestFn test_fn_;
};

83
Ptr<BriefDescriptorExtractor> BriefDescriptorExtractor::create( int bytes, bool use_orientation )
84
{
85
    return makePtr<BriefDescriptorExtractorImpl>(bytes, use_orientation );
86 87
}

88
inline int smoothedSum(const Mat& sum, const KeyPoint& pt, int y, int x, bool use_orientation, Matx21f R)
89
{
90
    static const int HALF_KERNEL = BriefDescriptorExtractorImpl::KERNEL_SIZE / 2;
91

92 93 94 95 96 97 98 99 100 101
    if ( use_orientation )
    {
      int rx = (int)(((float)x)*R(1,0) - ((float)y)*R(0,0));
      int ry = (int)(((float)x)*R(0,0) + ((float)y)*R(1,0));
      if (rx > 24) rx = 24; if (rx < -24) rx = -24;
      if (ry > 24) ry = 24; if (ry < -24) ry = -24;
      x = rx; y = ry;
    }
    const int img_y = (int)(pt.pt.y + 0.5) + y;
    const int img_x = (int)(pt.pt.x + 0.5) + x;
102 103 104 105 106 107
    return   sum.at<int>(img_y + HALF_KERNEL + 1, img_x + HALF_KERNEL + 1)
           - sum.at<int>(img_y + HALF_KERNEL + 1, img_x - HALF_KERNEL)
           - sum.at<int>(img_y - HALF_KERNEL, img_x + HALF_KERNEL + 1)
           + sum.at<int>(img_y - HALF_KERNEL, img_x - HALF_KERNEL);
}

108
static void pixelTests16(InputArray _sum, const std::vector<KeyPoint>& keypoints, OutputArray _descriptors, bool use_orientation )
109
{
110
    Matx21f R;
111
    Mat sum = _sum.getMat(), descriptors = _descriptors.getMat();
112
    for (size_t i = 0; i < keypoints.size(); ++i)
113
    {
114
        uchar* desc = descriptors.ptr(static_cast<int>(i));
115
        const KeyPoint& pt = keypoints[i];
116 117 118 119 120 121 122 123
        if ( use_orientation )
        {
          float angle = pt.angle;
          angle *= (float)(CV_PI/180.f);
          R(0,0) = sin(angle);
          R(1,0) = cos(angle);
        }

124 125 126 127
#include "generated_16.i"
    }
}

128
static void pixelTests32(InputArray _sum, const std::vector<KeyPoint>& keypoints, OutputArray _descriptors, bool use_orientation)
129
{
130
    Matx21f R;
131
    Mat sum = _sum.getMat(), descriptors = _descriptors.getMat();
132
    for (size_t i = 0; i < keypoints.size(); ++i)
133
    {
134
        uchar* desc = descriptors.ptr(static_cast<int>(i));
135
        const KeyPoint& pt = keypoints[i];
136 137 138 139 140 141 142
        if ( use_orientation )
        {
          float angle = pt.angle;
          angle *= (float)(CV_PI / 180.f);
          R(0,0) = sin(angle);
          R(1,0) = cos(angle);
        }
143 144 145 146 147

#include "generated_32.i"
    }
}

148
static void pixelTests64(InputArray _sum, const std::vector<KeyPoint>& keypoints, OutputArray _descriptors, bool use_orientation)
149
{
150
    Matx21f R;
151
    Mat sum = _sum.getMat(), descriptors = _descriptors.getMat();
152
    for (size_t i = 0; i < keypoints.size(); ++i)
153
    {
154
        uchar* desc = descriptors.ptr(static_cast<int>(i));
155
        const KeyPoint& pt = keypoints[i];
156 157 158 159 160 161 162
        if ( use_orientation )
        {
          float angle = pt.angle;
          angle *= (float)(CV_PI/180.f);
          R(0,0) = sin(angle);
          R(1,0) = cos(angle);
        }
163 164 165 166 167

#include "generated_64.i"
    }
}

168
BriefDescriptorExtractorImpl::BriefDescriptorExtractorImpl(int bytes, bool use_orientation) :
169 170
    bytes_(bytes), test_fn_(NULL)
{
171 172
    use_orientation_ = use_orientation;

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
    switch (bytes)
    {
        case 16:
            test_fn_ = pixelTests16;
            break;
        case 32:
            test_fn_ = pixelTests32;
            break;
        case 64:
            test_fn_ = pixelTests64;
            break;
        default:
            CV_Error(Error::StsBadArg, "bytes must be 16, 32, or 64");
    }
}

189
int BriefDescriptorExtractorImpl::descriptorSize() const
190 191 192 193
{
    return bytes_;
}

194
int BriefDescriptorExtractorImpl::descriptorType() const
195 196 197 198
{
    return CV_8UC1;
}

199
int BriefDescriptorExtractorImpl::defaultNorm() const
200 201 202 203
{
    return NORM_HAMMING;
}

204
void BriefDescriptorExtractorImpl::read( const FileNode& fn)
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
{
    int dSize = fn["descriptorSize"];
    switch (dSize)
    {
        case 16:
            test_fn_ = pixelTests16;
            break;
        case 32:
            test_fn_ = pixelTests32;
            break;
        case 64:
            test_fn_ = pixelTests64;
            break;
        default:
            CV_Error(Error::StsBadArg, "descriptorSize must be 16, 32, or 64");
    }
    bytes_ = dSize;
}

224
void BriefDescriptorExtractorImpl::write( FileStorage& fs) const
225 226 227 228
{
    fs << "descriptorSize" << bytes_;
}

229 230 231
void BriefDescriptorExtractorImpl::compute(InputArray image,
                                           std::vector<KeyPoint>& keypoints,
                                           OutputArray descriptors)
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
{
    // Construct integral image for fast smoothing (box filter)
    Mat sum;

    Mat grayImage = image.getMat();
    if( image.type() != CV_8U ) cvtColor( image, grayImage, COLOR_BGR2GRAY );

    ///TODO allow the user to pass in a precomputed integral image
    //if(image.type() == CV_32S)
    //  sum = image;
    //else

    integral( grayImage, sum, CV_32S);

    //Remove keypoints very close to the border
    KeyPointsFilter::runByImageBorder(keypoints, image.size(), PATCH_SIZE/2 + KERNEL_SIZE/2);

    descriptors.create((int)keypoints.size(), bytes_, CV_8U);
    descriptors.setTo(Scalar::all(0));
251
    test_fn_(sum, keypoints, descriptors, use_orientation_);
252 253 254 255
}

}
} // namespace cv