objdetect.hpp 23.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
// 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*/

S
sourin 已提交
44 45
#ifndef OPENCV_OBJDETECT_HPP
#define OPENCV_OBJDETECT_HPP
46

47
#include "opencv2/core.hpp"
48

M
Maksim Shabunin 已提交
49 50 51 52 53 54 55
/**
@defgroup objdetect Object Detection

Haar Feature-based Cascade Classifier for Object Detection
----------------------------------------------------------

The object detector described below has been initially proposed by Paul Viola @cite Viola01 and
56
improved by Rainer Lienhart @cite Lienhart02 .
M
Maksim Shabunin 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

First, a classifier (namely a *cascade of boosted classifiers working with haar-like features*) is
trained with a few hundred sample views of a particular object (i.e., a face or a car), called
positive examples, that are scaled to the same size (say, 20x20), and negative examples - arbitrary
images of the same size.

After a classifier is trained, it can be applied to a region of interest (of the same size as used
during the training) in an input image. The classifier outputs a "1" if the region is likely to show
the object (i.e., face/car), and "0" otherwise. To search for the object in the whole image one can
move the search window across the image and check every location using the classifier. The
classifier is designed so that it can be easily "resized" in order to be able to find the objects of
interest at different sizes, which is more efficient than resizing the image itself. So, to find an
object of an unknown size in the image the scan procedure should be done several times at different
scales.

The word "cascade" in the classifier name means that the resultant classifier consists of several
simpler classifiers (*stages*) that are applied subsequently to a region of interest until at some
stage the candidate is rejected or all the stages are passed. The word "boosted" means that the
classifiers at every stage of the cascade are complex themselves and they are built out of basic
classifiers using one of four different boosting techniques (weighted voting). Currently Discrete
Adaboost, Real Adaboost, Gentle Adaboost and Logitboost are supported. The basic classifiers are
decision-tree classifiers with at least 2 leaves. Haar-like features are the input to the basic
classifiers, and are calculated as described below. The current algorithm uses the following
Haar-like features:

![image](pics/haarfeatures.png)

The feature used in a particular classifier is specified by its shape (1a, 2b etc.), position within
the region of interest and the scale (this scale is not the same as the scale used at the detection
stage, though these two scales are multiplied). For example, in the case of the third line feature
(2c) the response is calculated as the difference between the sum of image pixels under the
rectangle covering the whole feature (including the two white stripes and the black stripe in the
middle) and the sum of the image pixels under the black stripe multiplied by 3 in order to
compensate for the differences in the size of areas. The sums of pixel values over a rectangular
regions are calculated rapidly using integral images (see below and the integral description).

To see the object detector at work, have a look at the facedetect demo:
94
<https://github.com/opencv/opencv/tree/master/samples/cpp/dbt_face_detection.cpp>
M
Maksim Shabunin 已提交
95 96

The following reference is for the detection part only. There is a separate application called
97
opencv_traincascade that can train a cascade of boosted classifiers from a set of samples.
M
Maksim Shabunin 已提交
98 99 100 101 102 103 104 105 106 107 108

@note In the new C++ interface it is also possible to use LBP (local binary pattern) features in
addition to Haar-like features. .. [Viola01] Paul Viola and Michael J. Jones. Rapid Object Detection
using a Boosted Cascade of Simple Features. IEEE CVPR, 2001. The paper is available online at
<http://research.microsoft.com/en-us/um/people/viola/Pubs/Detect/violaJones_CVPR2001.pdf>

@{
    @defgroup objdetect_c C API
@}
 */

109
typedef struct CvHaarClassifierCascade CvHaarClassifierCascade;
A
Alexey Kazakov 已提交
110

111 112
namespace cv
{
A
Andrey Kamaev 已提交
113

M
Maksim Shabunin 已提交
114 115 116
//! @addtogroup objdetect
//! @{

117 118
///////////////////////////// Object Detection ////////////////////////////

M
Maksim Shabunin 已提交
119 120
//! 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)
121 122 123 124 125 126
class CV_EXPORTS SimilarRects
{
public:
    SimilarRects(double _eps) : eps(_eps) {}
    inline bool operator()(const Rect& r1, const Rect& r2) const
    {
127
        double delta = eps * ((std::min)(r1.width, r2.width) + (std::min)(r1.height, r2.height)) * 0.5;
128 129 130 131 132 133 134 135
        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;
};

M
Maksim Shabunin 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
/** @brief Groups the object candidate rectangles.

@param rectList Input/output vector of rectangles. Output vector includes retained and grouped
rectangles. (The Python list is not modified in place.)
@param groupThreshold Minimum possible number of rectangles minus 1. The threshold is used in a
group of rectangles to retain it.
@param eps Relative difference between sides of the rectangles to merge them into a group.

The function is a wrapper for the generic function partition . It clusters all the input rectangles
using the rectangle equivalence criteria that combines rectangles with similar sizes and similar
locations. The similarity is defined by eps. When eps=0 , no clustering is done at all. If
\f$\texttt{eps}\rightarrow +\inf\f$ , all the rectangles are put in one cluster. Then, the small
clusters containing less than or equal to groupThreshold rectangles are rejected. In each other
cluster, the average rectangle is computed and put into the output rectangle list.
 */
151
CV_EXPORTS   void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps = 0.2);
M
Maksim Shabunin 已提交
152
/** @overload */
153 154
CV_EXPORTS_W void groupRectangles(CV_IN_OUT std::vector<Rect>& rectList, CV_OUT std::vector<int>& weights,
                                  int groupThreshold, double eps = 0.2);
M
Maksim Shabunin 已提交
155
/** @overload */
156 157
CV_EXPORTS   void groupRectangles(std::vector<Rect>& rectList, int groupThreshold,
                                  double eps, std::vector<int>* weights, std::vector<double>* levelWeights );
M
Maksim Shabunin 已提交
158
/** @overload */
159 160
CV_EXPORTS   void groupRectangles(std::vector<Rect>& rectList, std::vector<int>& rejectLevels,
                                  std::vector<double>& levelWeights, int groupThreshold, double eps = 0.2);
M
Maksim Shabunin 已提交
161
/** @overload */
162 163 164
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));
165

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

168 169 170 171 172
enum { CASCADE_DO_CANNY_PRUNING    = 1,
       CASCADE_SCALE_IMAGE         = 2,
       CASCADE_FIND_BIGGEST_OBJECT = 4,
       CASCADE_DO_ROUGH_SEARCH     = 8
     };
173

174
class CV_EXPORTS_W BaseCascadeClassifier : public Algorithm
175 176
{
public:
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
    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,
194
                                   CV_OUT std::vector<Rect>& objects,
195 196
                                   CV_OUT std::vector<int>& rejectLevels,
                                   CV_OUT std::vector<double>& levelWeights,
197 198 199 200
                                   double scaleFactor,
                                   int minNeighbors, int flags,
                                   Size minSize, Size maxSize,
                                   bool outputRejectLevels ) = 0;
201

202 203 204 205
    virtual bool isOldFormatCascade() const = 0;
    virtual Size getOriginalWindowSize() const = 0;
    virtual int getFeatureType() const = 0;
    virtual void* getOldCascade() = 0;
206

207
    class CV_EXPORTS MaskGenerator
208
    {
209
    public:
A
Andrey Kamaev 已提交
210
        virtual ~MaskGenerator() {}
211
        virtual Mat generateMask(const Mat& src)=0;
212
        virtual void initializeMask(const Mat& /*src*/) { }
213
    };
214 215 216
    virtual void setMaskGenerator(const Ptr<MaskGenerator>& maskGenerator) = 0;
    virtual Ptr<MaskGenerator> getMaskGenerator() = 0;
};
217

218 219
/** @example facedetect.cpp
*/
M
Maksim Shabunin 已提交
220 221
/** @brief Cascade classifier class for object detection.
 */
222
class CV_EXPORTS_W CascadeClassifier
223 224 225
{
public:
    CV_WRAP CascadeClassifier();
M
Maksim Shabunin 已提交
226 227 228 229
    /** @brief Loads a classifier from a file.

    @param filename Name of the file from which the classifier is loaded.
     */
230
    CV_WRAP CascadeClassifier(const String& filename);
231
    ~CascadeClassifier();
M
Maksim Shabunin 已提交
232 233
    /** @brief Checks whether the classifier has been loaded.
    */
234
    CV_WRAP bool empty() const;
M
Maksim Shabunin 已提交
235 236 237 238 239 240
    /** @brief Loads a classifier from a file.

    @param filename Name of the file from which the classifier is loaded. The file may contain an old
    HAAR classifier trained by the haartraining application or a new cascade classifier trained by the
    traincascade application.
     */
241
    CV_WRAP bool load( const String& filename );
M
Maksim Shabunin 已提交
242 243 244 245
    /** @brief Reads a classifier from a FileStorage node.

    @note The file may contain a new cascade classifier (trained traincascade application) only.
     */
246
    CV_WRAP bool read( const FileNode& node );
M
Maksim Shabunin 已提交
247 248 249 250

    /** @brief Detects objects of different sizes in the input image. The detected objects are returned as a list
    of rectangles.

251
    @param image Matrix of the type CV_8U containing an image where objects are detected.
M
Maksim Shabunin 已提交
252 253 254 255 256 257 258 259
    @param objects Vector of rectangles where each rectangle contains the detected object, the
    rectangles may be partially outside the original image.
    @param scaleFactor Parameter specifying how much the image size is reduced at each image scale.
    @param minNeighbors Parameter specifying how many neighbors each candidate rectangle should have
    to retain it.
    @param flags Parameter with the same meaning for an old cascade as in the function
    cvHaarDetectObjects. It is not used for a new cascade.
    @param minSize Minimum possible object size. Objects smaller than that are ignored.
260
    @param maxSize Maximum possible object size. Objects larger than that are ignored. If `maxSize == minSize` model is evaluated on single scale.
M
Maksim Shabunin 已提交
261 262 263 264 265

    The function is parallelized with the TBB library.

    @note
       -   (Python) A face detection example using cascade classifiers can be found at
266
            opencv_source_code/samples/python/facedetect.py
M
Maksim Shabunin 已提交
267
    */
268 269 270 271 272 273 274
    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() );

M
Maksim Shabunin 已提交
275
    /** @overload
276
    @param image Matrix of the type CV_8U containing an image where objects are detected.
M
Maksim Shabunin 已提交
277 278 279 280 281 282 283 284 285 286 287
    @param objects Vector of rectangles where each rectangle contains the detected object, the
    rectangles may be partially outside the original image.
    @param numDetections Vector of detection numbers for the corresponding objects. An object's number
    of detections is the number of neighboring positively classified rectangles that were joined
    together to form the object.
    @param scaleFactor Parameter specifying how much the image size is reduced at each image scale.
    @param minNeighbors Parameter specifying how many neighbors each candidate rectangle should have
    to retain it.
    @param flags Parameter with the same meaning for an old cascade as in the function
    cvHaarDetectObjects. It is not used for a new cascade.
    @param minSize Minimum possible object size. Objects smaller than that are ignored.
288
    @param maxSize Maximum possible object size. Objects larger than that are ignored. If `maxSize == minSize` model is evaluated on single scale.
M
Maksim Shabunin 已提交
289
    */
290
    CV_WRAP_AS(detectMultiScale2) void detectMultiScale( InputArray image,
291 292 293 294 295 296 297
                          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() );

M
Maksim Shabunin 已提交
298
    /** @overload
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
    This function allows you to retrieve the final stage decision certainty of classification.
    For this, one needs to set `outputRejectLevels` on true and provide the `rejectLevels` and `levelWeights` parameter.
    For each resulting detection, `levelWeights` will then contain the certainty of classification at the final stage.
    This value can then be used to separate strong from weaker classifications.

    A code sample on how to use it efficiently can be found below:
    @code
    Mat img;
    vector<double> weights;
    vector<int> levels;
    vector<Rect> detections;
    CascadeClassifier model("/path/to/your/model.xml");
    model.detectMultiScale(img, detections, levels, weights, 1.1, 3, 0, Size(), Size(), true);
    cerr << "Detection " << detections[0] << " with weight " << weights[0] << endl;
    @endcode
M
Maksim Shabunin 已提交
314
    */
315
    CV_WRAP_AS(detectMultiScale3) void detectMultiScale( InputArray image,
316 317 318 319 320 321 322 323 324
                                  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 );

325 326 327 328
    CV_WRAP bool isOldFormatCascade() const;
    CV_WRAP Size getOriginalWindowSize() const;
    CV_WRAP int getFeatureType() const;
    void* getOldCascade();
329

330 331
    CV_WRAP static bool convert(const String& oldcascade, const String& newcascade);

332 333
    void setMaskGenerator(const Ptr<BaseCascadeClassifier::MaskGenerator>& maskGenerator);
    Ptr<BaseCascadeClassifier::MaskGenerator> getMaskGenerator();
334

335
    Ptr<BaseCascadeClassifier> cc;
336 337
};

338
CV_EXPORTS Ptr<BaseCascadeClassifier::MaskGenerator> createFaceDetectionMaskGenerator();
339

340 341
//////////////// HOG (Histogram-of-Oriented-Gradients) Descriptor and Object Detector //////////////

M
Maksim Shabunin 已提交
342
//! struct for detection region of interest (ROI)
343 344
struct DetectionROI
{
M
Maksim Shabunin 已提交
345
   //! scale(size) of the bounding box
346
   double scale;
M
Maksim Shabunin 已提交
347
   //! set of requrested locations to be evaluated
348
   std::vector<cv::Point> locations;
M
Maksim Shabunin 已提交
349
   //! vector that will contain confidence values for each location
350
   std::vector<double> confidences;
351 352
};

353 354
/**@example peopledetect.cpp
 */
355
struct CV_EXPORTS_W HOGDescriptor
356 357
{
public:
358 359 360 361
    enum { L2Hys = 0
         };
    enum { DEFAULT_NLEVELS = 64
         };
A
Andrey Kamaev 已提交
362

363
    CV_WRAP HOGDescriptor() : winSize(64,128), blockSize(16,16), blockStride(8,8),
364
        cellSize(8,8), nbins(9), derivAperture(1), winSigma(-1),
A
Andrey Kamaev 已提交
365
        histogramNormType(HOGDescriptor::L2Hys), L2HysThreshold(0.2), gammaCorrection(true),
366
        free_coef(-1.f), nlevels(HOGDescriptor::DEFAULT_NLEVELS), signedGradient(false)
367
    {}
A
Andrey Kamaev 已提交
368

369
    CV_WRAP HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride,
370
                  Size _cellSize, int _nbins, int _derivAperture=1, double _winSigma=-1,
V
Vadim Pisarevsky 已提交
371
                  int _histogramNormType=HOGDescriptor::L2Hys,
V
Vadim Pisarevsky 已提交
372
                  double _L2HysThreshold=0.2, bool _gammaCorrection=false,
373
                  int _nlevels=HOGDescriptor::DEFAULT_NLEVELS, bool _signedGradient=false)
374 375 376
    : winSize(_winSize), blockSize(_blockSize), blockStride(_blockStride), cellSize(_cellSize),
    nbins(_nbins), derivAperture(_derivAperture), winSigma(_winSigma),
    histogramNormType(_histogramNormType), L2HysThreshold(_L2HysThreshold),
377
    gammaCorrection(_gammaCorrection), free_coef(-1.f), nlevels(_nlevels), signedGradient(_signedGradient)
378
    {}
A
Andrey Kamaev 已提交
379

380
    CV_WRAP HOGDescriptor(const String& filename)
381 382 383
    {
        load(filename);
    }
A
Andrey Kamaev 已提交
384

385 386 387 388
    HOGDescriptor(const HOGDescriptor& d)
    {
        d.copyTo(*this);
    }
A
Andrey Kamaev 已提交
389

390
    virtual ~HOGDescriptor() {}
A
Andrey Kamaev 已提交
391

392 393 394
    CV_WRAP size_t getDescriptorSize() const;
    CV_WRAP bool checkDetectorSize() const;
    CV_WRAP double getWinSigma() const;
A
Andrey Kamaev 已提交
395

396
    CV_WRAP virtual void setSVMDetector(InputArray _svmdetector);
A
Andrey Kamaev 已提交
397

398
    virtual bool read(FileNode& fn);
399
    virtual void write(FileStorage& fs, const String& objname) const;
A
Andrey Kamaev 已提交
400

401 402
    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;
403
    virtual void copyTo(HOGDescriptor& c) const;
404

K
HOG  
Konstantin Matskevich 已提交
405
    CV_WRAP virtual void compute(InputArray img,
406
                         CV_OUT std::vector<float>& descriptors,
407 408
                         Size winStride = Size(), Size padding = Size(),
                         const std::vector<Point>& locations = std::vector<Point>()) const;
K
HOG  
Konstantin Matskevich 已提交
409

M
Maksim Shabunin 已提交
410
    //! with found weights output
411 412
    CV_WRAP virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
                        CV_OUT std::vector<double>& weights,
413 414 415
                        double hitThreshold = 0, Size winStride = Size(),
                        Size padding = Size(),
                        const std::vector<Point>& searchLocations = std::vector<Point>()) const;
M
Maksim Shabunin 已提交
416
    //! without found weights output
417
    virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
418 419
                        double hitThreshold = 0, Size winStride = Size(),
                        Size padding = Size(),
420
                        const std::vector<Point>& searchLocations=std::vector<Point>()) const;
K
fixes  
Konstantin Matskevich 已提交
421

M
Maksim Shabunin 已提交
422
    //! with result weights output
K
HOG  
Konstantin Matskevich 已提交
423
    CV_WRAP virtual void detectMultiScale(InputArray img, CV_OUT std::vector<Rect>& foundLocations,
424 425 426
                                  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;
M
Maksim Shabunin 已提交
427
    //! without found weights output
K
HOG  
Konstantin Matskevich 已提交
428
    virtual void detectMultiScale(InputArray img, CV_OUT std::vector<Rect>& foundLocations,
429 430 431
                                  double hitThreshold = 0, Size winStride = Size(),
                                  Size padding = Size(), double scale = 1.05,
                                  double finalThreshold = 2.0, bool useMeanshiftGrouping = false) const;
432

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

436 437
    CV_WRAP static std::vector<float> getDefaultPeopleDetector();
    CV_WRAP static std::vector<float> getDaimlerPeopleDetector();
A
Andrey Kamaev 已提交
438

439 440 441 442 443 444 445 446 447 448
    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;
449
    CV_PROP std::vector<float> svmDetector;
K
Konstantin Matskevich 已提交
450
    UMat oclSvmDetector;
K
fixes  
Konstantin Matskevich 已提交
451
    float free_coef;
452
    CV_PROP int nlevels;
453
    CV_PROP bool signedGradient;
454 455


M
Maksim Shabunin 已提交
456
    //! evaluate specified ROI and return confidence value for each location
K
fixes  
Konstantin Matskevich 已提交
457
    virtual void detectROI(const cv::Mat& img, const std::vector<cv::Point> &locations,
458 459 460 461
                                   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;

M
Maksim Shabunin 已提交
462
    //! evaluate specified ROI and return confidence value for each location in multiple scales
K
fixes  
Konstantin Matskevich 已提交
463
    virtual void detectMultiScaleROI(const cv::Mat& img,
464 465 466 467 468
                                                       CV_OUT std::vector<cv::Rect>& foundLocations,
                                                       std::vector<DetectionROI>& locations,
                                                       double hitThreshold = 0,
                                                       int groupThreshold = 0) const;

M
Maksim Shabunin 已提交
469
    //! read/parse Dalal's alt model file
K
fixes  
Konstantin Matskevich 已提交
470 471
    void readALTModel(String modelfile);
    void groupRectangles(std::vector<cv::Rect>& rectList, std::vector<double>& weights, int groupThreshold, double eps) const;
472 473
};

M
Maksim Shabunin 已提交
474 475
//! @} objdetect

476 477
}

478
#include "opencv2/objdetect/detection_based_tracker.hpp"
479

480 481 482 483
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/objdetect/objdetect_c.h"
#endif

484
#endif