objdetect.hpp 16.0 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*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.
//
//
10
//                          License Agreement
11 12 13 14
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
15
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
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
// 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*/

#ifndef __OPENCV_OBJDETECT_HPP__
#define __OPENCV_OBJDETECT_HPP__

47
#include "opencv2/core.hpp"
48

49 50
typedef struct CvLatentSvmDetector CvLatentSvmDetector;
typedef struct CvHaarClassifierCascade CvHaarClassifierCascade;
A
Alexey Kazakov 已提交
51

52 53
namespace cv
{
A
Andrey Kamaev 已提交
54

55 56
///////////////////////////// Object Detection ////////////////////////////

M
Maria Dimashova 已提交
57 58 59 60 61 62
/*
 * This is a class wrapping up the structure CvLatentSvmDetector and functions working with it.
 * The class goals are:
 * 1) provide c++ interface;
 * 2) make it possible to load and detect more than one class (model) unlike CvLatentSvmDetector.
 */
63
class CV_EXPORTS LatentSvmDetector
M
Maria Dimashova 已提交
64 65
{
public:
66
    struct CV_EXPORTS ObjectDetection
M
Maria Dimashova 已提交
67 68
    {
        ObjectDetection();
69
        ObjectDetection( const Rect& rect, float score, int classID = -1 );
M
Maria Dimashova 已提交
70 71 72 73 74
        Rect rect;
        float score;
        int classID;
    };

75
    LatentSvmDetector();
76
    LatentSvmDetector( const std::vector<String>& filenames, const std::vector<String>& classNames = std::vector<String>() );
M
Maria Dimashova 已提交
77 78
    virtual ~LatentSvmDetector();

79 80
    virtual void clear();
    virtual bool empty() const;
81
    bool load( const std::vector<String>& filenames, const std::vector<String>& classNames = std::vector<String>() );
M
Maria Dimashova 已提交
82

83
    virtual void detect( const Mat& image,
84
                         std::vector<ObjectDetection>& objectDetections,
85 86
                         float overlapThreshold = 0.5f,
                         int numThreads = -1 );
M
Maria Dimashova 已提交
87

88
    const std::vector<String>& getClassNames() const;
M
Maria Dimashova 已提交
89 90 91
    size_t getClassCount() const;

private:
92
    std::vector<CvLatentSvmDetector*> detectors;
93
    std::vector<String> classNames;
M
Maria Dimashova 已提交
94 95
};

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
// class for grouping object candidates, detected by Cascade Classifier, HOG etc.
// instance of the class is to be passed to cv::partition (see cxoperations.hpp)
class CV_EXPORTS SimilarRects
{
public:
    SimilarRects(double _eps) : eps(_eps) {}
    inline bool operator()(const Rect& r1, const Rect& r2) const
    {
        double delta = eps*(std::min(r1.width, r2.width) + std::min(r1.height, r2.height))*0.5;
        return std::abs(r1.x - r2.x) <= delta &&
            std::abs(r1.y - r2.y) <= delta &&
            std::abs(r1.x + r1.width - r2.x - r2.width) <= delta &&
            std::abs(r1.y + r1.height - r2.y - r2.height) <= delta;
    }
    double eps;
};

113
CV_EXPORTS   void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps = 0.2);
114 115 116 117
CV_EXPORTS_W void groupRectangles(CV_IN_OUT std::vector<Rect>& rectList, CV_OUT std::vector<int>& weights,
                                  int groupThreshold, double eps = 0.2);
CV_EXPORTS   void groupRectangles(std::vector<Rect>& rectList, int groupThreshold,
                                  double eps, std::vector<int>* weights, std::vector<double>* levelWeights );
118 119
CV_EXPORTS   void groupRectangles(std::vector<Rect>& rectList, std::vector<int>& rejectLevels,
                                  std::vector<double>& levelWeights, int groupThreshold, double eps = 0.2);
120 121 122
CV_EXPORTS   void groupRectangles_meanshift(std::vector<Rect>& rectList, std::vector<double>& foundWeights,
                                            std::vector<double>& foundScales,
                                            double detectThreshold = 0.0, Size winDetSize = Size(64, 128));
123

R
Roman Donchenko 已提交
124
template<> CV_EXPORTS void DefaultDeleter<CvHaarClassifierCascade>::operator ()(CvHaarClassifierCascade* obj) const;
125

126 127 128 129 130
enum { CASCADE_DO_CANNY_PRUNING    = 1,
       CASCADE_SCALE_IMAGE         = 2,
       CASCADE_FIND_BIGGEST_OBJECT = 4,
       CASCADE_DO_ROUGH_SEARCH     = 8
     };
131

132
class CV_EXPORTS_W BaseCascadeClassifier : public Algorithm
133 134
{
public:
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
    virtual ~BaseCascadeClassifier();
    virtual bool empty() const = 0;
    virtual bool load( const String& filename ) = 0;
    virtual void detectMultiScale( InputArray image,
                           CV_OUT std::vector<Rect>& objects,
                           double scaleFactor,
                           int minNeighbors, int flags,
                           Size minSize, Size maxSize ) = 0;

    virtual void detectMultiScale( InputArray image,
                           CV_OUT std::vector<Rect>& objects,
                           CV_OUT std::vector<int>& numDetections,
                           double scaleFactor,
                           int minNeighbors, int flags,
                           Size minSize, Size maxSize ) = 0;

    virtual void detectMultiScale( InputArray image,
152
                                   CV_OUT std::vector<Rect>& objects,
153 154
                                   CV_OUT std::vector<int>& rejectLevels,
                                   CV_OUT std::vector<double>& levelWeights,
155 156 157 158
                                   double scaleFactor,
                                   int minNeighbors, int flags,
                                   Size minSize, Size maxSize,
                                   bool outputRejectLevels ) = 0;
159

160 161 162 163
    virtual bool isOldFormatCascade() const = 0;
    virtual Size getOriginalWindowSize() const = 0;
    virtual int getFeatureType() const = 0;
    virtual void* getOldCascade() = 0;
164

165
    class CV_EXPORTS MaskGenerator
166
    {
167
    public:
A
Andrey Kamaev 已提交
168
        virtual ~MaskGenerator() {}
169
        virtual Mat generateMask(const Mat& src)=0;
170
        virtual void initializeMask(const Mat& /*src*/) { }
171
    };
172 173 174
    virtual void setMaskGenerator(const Ptr<MaskGenerator>& maskGenerator) = 0;
    virtual Ptr<MaskGenerator> getMaskGenerator() = 0;
};
175

176
class CV_EXPORTS_W CascadeClassifier
177 178 179
{
public:
    CV_WRAP CascadeClassifier();
180
    CV_WRAP CascadeClassifier(const String& filename);
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
    ~CascadeClassifier();
    CV_WRAP bool empty() const;
    CV_WRAP bool load( const String& filename );
    CV_WRAP bool read( const FileNode& node );
    CV_WRAP void detectMultiScale( InputArray image,
                          CV_OUT std::vector<Rect>& objects,
                          double scaleFactor = 1.1,
                          int minNeighbors = 3, int flags = 0,
                          Size minSize = Size(),
                          Size maxSize = Size() );

    CV_WRAP void detectMultiScale( InputArray image,
                          CV_OUT std::vector<Rect>& objects,
                          CV_OUT std::vector<int>& numDetections,
                          double scaleFactor=1.1,
                          int minNeighbors=3, int flags=0,
                          Size minSize=Size(),
                          Size maxSize=Size() );

    CV_WRAP void detectMultiScale( InputArray image,
201 202 203 204 205 206 207 208 209
                                  CV_OUT std::vector<Rect>& objects,
                                  CV_OUT std::vector<int>& rejectLevels,
                                  CV_OUT std::vector<double>& levelWeights,
                                  double scaleFactor = 1.1,
                                  int minNeighbors = 3, int flags = 0,
                                  Size minSize = Size(),
                                  Size maxSize = Size(),
                                  bool outputRejectLevels = false );

210 211 212 213
    CV_WRAP bool isOldFormatCascade() const;
    CV_WRAP Size getOriginalWindowSize() const;
    CV_WRAP int getFeatureType() const;
    void* getOldCascade();
214

215 216
    CV_WRAP static bool convert(const String& oldcascade, const String& newcascade);

217 218
    void setMaskGenerator(const Ptr<BaseCascadeClassifier::MaskGenerator>& maskGenerator);
    Ptr<BaseCascadeClassifier::MaskGenerator> getMaskGenerator();
219

220
    Ptr<BaseCascadeClassifier> cc;
221 222
};

223
CV_EXPORTS Ptr<BaseCascadeClassifier::MaskGenerator> createFaceDetectionMaskGenerator();
224

225 226
//////////////// HOG (Histogram-of-Oriented-Gradients) Descriptor and Object Detector //////////////

227 228 229 230 231 232
// struct for detection region of interest (ROI)
struct DetectionROI
{
   // scale(size) of the bounding box
   double scale;
   // set of requrested locations to be evaluated
233
   std::vector<cv::Point> locations;
234
   // vector that will contain confidence values for each location
235
   std::vector<double> confidences;
236 237
};

238
struct CV_EXPORTS_W HOGDescriptor
239 240
{
public:
241 242 243 244
    enum { L2Hys = 0
         };
    enum { DEFAULT_NLEVELS = 64
         };
A
Andrey Kamaev 已提交
245

246
    CV_WRAP HOGDescriptor() : winSize(64,128), blockSize(16,16), blockStride(8,8),
247
        cellSize(8,8), nbins(9), derivAperture(1), winSigma(-1),
A
Andrey Kamaev 已提交
248
        histogramNormType(HOGDescriptor::L2Hys), L2HysThreshold(0.2), gammaCorrection(true),
249
        free_coef(-1.f), nlevels(HOGDescriptor::DEFAULT_NLEVELS)
250
    {}
A
Andrey Kamaev 已提交
251

252
    CV_WRAP HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride,
253
                  Size _cellSize, int _nbins, int _derivAperture=1, double _winSigma=-1,
V
Vadim Pisarevsky 已提交
254
                  int _histogramNormType=HOGDescriptor::L2Hys,
V
Vadim Pisarevsky 已提交
255 256
                  double _L2HysThreshold=0.2, bool _gammaCorrection=false,
                  int _nlevels=HOGDescriptor::DEFAULT_NLEVELS)
257 258 259
    : winSize(_winSize), blockSize(_blockSize), blockStride(_blockStride), cellSize(_cellSize),
    nbins(_nbins), derivAperture(_derivAperture), winSigma(_winSigma),
    histogramNormType(_histogramNormType), L2HysThreshold(_L2HysThreshold),
260
    gammaCorrection(_gammaCorrection), free_coef(-1.f), nlevels(_nlevels)
261
    {}
A
Andrey Kamaev 已提交
262

263
    CV_WRAP HOGDescriptor(const String& filename)
264 265 266
    {
        load(filename);
    }
A
Andrey Kamaev 已提交
267

268 269 270 271
    HOGDescriptor(const HOGDescriptor& d)
    {
        d.copyTo(*this);
    }
A
Andrey Kamaev 已提交
272

273
    virtual ~HOGDescriptor() {}
A
Andrey Kamaev 已提交
274

275 276 277
    CV_WRAP size_t getDescriptorSize() const;
    CV_WRAP bool checkDetectorSize() const;
    CV_WRAP double getWinSigma() const;
A
Andrey Kamaev 已提交
278

279
    CV_WRAP virtual void setSVMDetector(InputArray _svmdetector);
A
Andrey Kamaev 已提交
280

281
    virtual bool read(FileNode& fn);
282
    virtual void write(FileStorage& fs, const String& objname) const;
A
Andrey Kamaev 已提交
283

284 285
    CV_WRAP virtual bool load(const String& filename, const String& objname = String());
    CV_WRAP virtual void save(const String& filename, const String& objname = String()) const;
286
    virtual void copyTo(HOGDescriptor& c) const;
287

K
HOG  
Konstantin Matskevich 已提交
288
    CV_WRAP virtual void compute(InputArray img,
289
                         CV_OUT std::vector<float>& descriptors,
290 291
                         Size winStride = Size(), Size padding = Size(),
                         const std::vector<Point>& locations = std::vector<Point>()) const;
K
HOG  
Konstantin Matskevich 已提交
292

293
    //with found weights output
294 295
    CV_WRAP virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
                        CV_OUT std::vector<double>& weights,
296 297 298
                        double hitThreshold = 0, Size winStride = Size(),
                        Size padding = Size(),
                        const std::vector<Point>& searchLocations = std::vector<Point>()) const;
299
    //without found weights output
300
    virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
301 302
                        double hitThreshold = 0, Size winStride = Size(),
                        Size padding = Size(),
303
                        const std::vector<Point>& searchLocations=std::vector<Point>()) const;
K
fixes  
Konstantin Matskevich 已提交
304

305
    //with result weights output
K
HOG  
Konstantin Matskevich 已提交
306
    CV_WRAP virtual void detectMultiScale(InputArray img, CV_OUT std::vector<Rect>& foundLocations,
307 308 309
                                  CV_OUT std::vector<double>& foundWeights, double hitThreshold = 0,
                                  Size winStride = Size(), Size padding = Size(), double scale = 1.05,
                                  double finalThreshold = 2.0,bool useMeanshiftGrouping = false) const;
310
    //without found weights output
K
HOG  
Konstantin Matskevich 已提交
311
    virtual void detectMultiScale(InputArray img, CV_OUT std::vector<Rect>& foundLocations,
312 313 314
                                  double hitThreshold = 0, Size winStride = Size(),
                                  Size padding = Size(), double scale = 1.05,
                                  double finalThreshold = 2.0, bool useMeanshiftGrouping = false) const;
315

316
    CV_WRAP virtual void computeGradient(const Mat& img, CV_OUT Mat& grad, CV_OUT Mat& angleOfs,
317
                                 Size paddingTL = Size(), Size paddingBR = Size()) const;
A
Andrey Kamaev 已提交
318

319 320
    CV_WRAP static std::vector<float> getDefaultPeopleDetector();
    CV_WRAP static std::vector<float> getDaimlerPeopleDetector();
A
Andrey Kamaev 已提交
321

322 323 324 325 326 327 328 329 330 331
    CV_PROP Size winSize;
    CV_PROP Size blockSize;
    CV_PROP Size blockStride;
    CV_PROP Size cellSize;
    CV_PROP int nbins;
    CV_PROP int derivAperture;
    CV_PROP double winSigma;
    CV_PROP int histogramNormType;
    CV_PROP double L2HysThreshold;
    CV_PROP bool gammaCorrection;
332
    CV_PROP std::vector<float> svmDetector;
K
Konstantin Matskevich 已提交
333
    UMat oclSvmDetector;
K
fixes  
Konstantin Matskevich 已提交
334
    float free_coef;
335
    CV_PROP int nlevels;
336 337


K
fixes  
Konstantin Matskevich 已提交
338 339
    // evaluate specified ROI and return confidence value for each location
    virtual void detectROI(const cv::Mat& img, const std::vector<cv::Point> &locations,
340 341 342 343
                                   CV_OUT std::vector<cv::Point>& foundLocations, CV_OUT std::vector<double>& confidences,
                                   double hitThreshold = 0, cv::Size winStride = Size(),
                                   cv::Size padding = Size()) const;

K
fixes  
Konstantin Matskevich 已提交
344 345
    // evaluate specified ROI and return confidence value for each location in multiple scales
    virtual void detectMultiScaleROI(const cv::Mat& img,
346 347 348 349 350
                                                       CV_OUT std::vector<cv::Rect>& foundLocations,
                                                       std::vector<DetectionROI>& locations,
                                                       double hitThreshold = 0,
                                                       int groupThreshold = 0) const;

K
fixes  
Konstantin Matskevich 已提交
351 352 353
    // read/parse Dalal's alt model file
    void readALTModel(String modelfile);
    void groupRectangles(std::vector<cv::Rect>& rectList, std::vector<double>& weights, int groupThreshold, double eps) const;
354 355
};

356

V
Vadim Pisarevsky 已提交
357
CV_EXPORTS_W void findDataMatrix(InputArray image,
358
                                 CV_OUT std::vector<String>& codes,
359 360 361
                                 OutputArray corners = noArray(),
                                 OutputArrayOfArrays dmtx = noArray());

V
Vadim Pisarevsky 已提交
362
CV_EXPORTS_W void drawDataMatrixCodes(InputOutputArray image,
363
                                      const std::vector<String>& codes,
V
Vadim Pisarevsky 已提交
364
                                      InputArray corners);
365 366
}

367
#include "opencv2/objdetect/linemod.hpp"
368
#include "opencv2/objdetect/erfilter.hpp"
369 370

#endif