objdetect.hpp 22.1 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

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 94 95 96

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:
<https://github.com/Itseez/opencv/tree/master/samples/cpp/dbt_face_detection.cpp>

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 127 128 129 130 131 132 133 134 135
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;
};

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

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

    @param filename Name of the file from which the classifier is loaded.
     */
228
    CV_WRAP CascadeClassifier(const String& filename);
229
    ~CascadeClassifier();
M
Maksim Shabunin 已提交
230 231
    /** @brief Checks whether the classifier has been loaded.
    */
232
    CV_WRAP bool empty() const;
M
Maksim Shabunin 已提交
233 234 235 236 237 238
    /** @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.
     */
239
    CV_WRAP bool load( const String& filename );
M
Maksim Shabunin 已提交
240 241 242 243
    /** @brief Reads a classifier from a FileStorage node.

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

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

249
    @param image Matrix of the type CV_8U containing an image where objects are detected.
M
Maksim Shabunin 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263
    @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.
    @param maxSize Maximum possible object size. Objects larger than that are ignored.

    The function is parallelized with the TBB library.

    @note
       -   (Python) A face detection example using cascade classifiers can be found at
264
            opencv_source_code/samples/python2/facedetect.py
M
Maksim Shabunin 已提交
265
    */
266 267 268 269 270 271 272
    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 已提交
273
    /** @overload
274
    @param image Matrix of the type CV_8U containing an image where objects are detected.
M
Maksim Shabunin 已提交
275 276 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.
    @param maxSize Maximum possible object size. Objects larger than that are ignored.
    */
288
    CV_WRAP_AS(detectMultiScale2) void detectMultiScale( InputArray image,
289 290 291 292 293 294 295
                          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 已提交
296 297 298
    /** @overload
    if `outputRejectLevels` is `true` returns `rejectLevels` and `levelWeights`
    */
299
    CV_WRAP_AS(detectMultiScale3) void detectMultiScale( InputArray image,
300 301 302 303 304 305 306 307 308
                                  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 );

309 310 311 312
    CV_WRAP bool isOldFormatCascade() const;
    CV_WRAP Size getOriginalWindowSize() const;
    CV_WRAP int getFeatureType() const;
    void* getOldCascade();
313

314 315
    CV_WRAP static bool convert(const String& oldcascade, const String& newcascade);

316 317
    void setMaskGenerator(const Ptr<BaseCascadeClassifier::MaskGenerator>& maskGenerator);
    Ptr<BaseCascadeClassifier::MaskGenerator> getMaskGenerator();
318

319
    Ptr<BaseCascadeClassifier> cc;
320 321
};

322
CV_EXPORTS Ptr<BaseCascadeClassifier::MaskGenerator> createFaceDetectionMaskGenerator();
323

324 325
//////////////// HOG (Histogram-of-Oriented-Gradients) Descriptor and Object Detector //////////////

M
Maksim Shabunin 已提交
326
//! struct for detection region of interest (ROI)
327 328
struct DetectionROI
{
M
Maksim Shabunin 已提交
329
   //! scale(size) of the bounding box
330
   double scale;
M
Maksim Shabunin 已提交
331
   //! set of requrested locations to be evaluated
332
   std::vector<cv::Point> locations;
M
Maksim Shabunin 已提交
333
   //! vector that will contain confidence values for each location
334
   std::vector<double> confidences;
335 336
};

337
struct CV_EXPORTS_W HOGDescriptor
338 339
{
public:
340 341 342 343
    enum { L2Hys = 0
         };
    enum { DEFAULT_NLEVELS = 64
         };
A
Andrey Kamaev 已提交
344

345
    CV_WRAP HOGDescriptor() : winSize(64,128), blockSize(16,16), blockStride(8,8),
346
        cellSize(8,8), nbins(9), derivAperture(1), winSigma(-1),
A
Andrey Kamaev 已提交
347
        histogramNormType(HOGDescriptor::L2Hys), L2HysThreshold(0.2), gammaCorrection(true),
348
        free_coef(-1.f), nlevels(HOGDescriptor::DEFAULT_NLEVELS), signedGradient(false)
349
    {}
A
Andrey Kamaev 已提交
350

351
    CV_WRAP HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride,
352
                  Size _cellSize, int _nbins, int _derivAperture=1, double _winSigma=-1,
V
Vadim Pisarevsky 已提交
353
                  int _histogramNormType=HOGDescriptor::L2Hys,
V
Vadim Pisarevsky 已提交
354
                  double _L2HysThreshold=0.2, bool _gammaCorrection=false,
355
                  int _nlevels=HOGDescriptor::DEFAULT_NLEVELS, bool _signedGradient=false)
356 357 358
    : winSize(_winSize), blockSize(_blockSize), blockStride(_blockStride), cellSize(_cellSize),
    nbins(_nbins), derivAperture(_derivAperture), winSigma(_winSigma),
    histogramNormType(_histogramNormType), L2HysThreshold(_L2HysThreshold),
359
    gammaCorrection(_gammaCorrection), free_coef(-1.f), nlevels(_nlevels), signedGradient(_signedGradient)
360
    {}
A
Andrey Kamaev 已提交
361

362
    CV_WRAP HOGDescriptor(const String& filename)
363 364 365
    {
        load(filename);
    }
A
Andrey Kamaev 已提交
366

367 368 369 370
    HOGDescriptor(const HOGDescriptor& d)
    {
        d.copyTo(*this);
    }
A
Andrey Kamaev 已提交
371

372
    virtual ~HOGDescriptor() {}
A
Andrey Kamaev 已提交
373

374 375 376
    CV_WRAP size_t getDescriptorSize() const;
    CV_WRAP bool checkDetectorSize() const;
    CV_WRAP double getWinSigma() const;
A
Andrey Kamaev 已提交
377

378
    CV_WRAP virtual void setSVMDetector(InputArray _svmdetector);
A
Andrey Kamaev 已提交
379

380
    virtual bool read(FileNode& fn);
381
    virtual void write(FileStorage& fs, const String& objname) const;
A
Andrey Kamaev 已提交
382

383 384
    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;
385
    virtual void copyTo(HOGDescriptor& c) const;
386

K
HOG  
Konstantin Matskevich 已提交
387
    CV_WRAP virtual void compute(InputArray img,
388
                         CV_OUT std::vector<float>& descriptors,
389 390
                         Size winStride = Size(), Size padding = Size(),
                         const std::vector<Point>& locations = std::vector<Point>()) const;
K
HOG  
Konstantin Matskevich 已提交
391

M
Maksim Shabunin 已提交
392
    //! with found weights output
393 394
    CV_WRAP virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
                        CV_OUT std::vector<double>& weights,
395 396 397
                        double hitThreshold = 0, Size winStride = Size(),
                        Size padding = Size(),
                        const std::vector<Point>& searchLocations = std::vector<Point>()) const;
M
Maksim Shabunin 已提交
398
    //! without found weights output
399
    virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
400 401
                        double hitThreshold = 0, Size winStride = Size(),
                        Size padding = Size(),
402
                        const std::vector<Point>& searchLocations=std::vector<Point>()) const;
K
fixes  
Konstantin Matskevich 已提交
403

M
Maksim Shabunin 已提交
404
    //! with result weights output
K
HOG  
Konstantin Matskevich 已提交
405
    CV_WRAP virtual void detectMultiScale(InputArray img, CV_OUT std::vector<Rect>& foundLocations,
406 407 408
                                  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 已提交
409
    //! without found weights output
K
HOG  
Konstantin Matskevich 已提交
410
    virtual void detectMultiScale(InputArray img, CV_OUT std::vector<Rect>& foundLocations,
411 412 413
                                  double hitThreshold = 0, Size winStride = Size(),
                                  Size padding = Size(), double scale = 1.05,
                                  double finalThreshold = 2.0, bool useMeanshiftGrouping = false) const;
414

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

418 419
    CV_WRAP static std::vector<float> getDefaultPeopleDetector();
    CV_WRAP static std::vector<float> getDaimlerPeopleDetector();
A
Andrey Kamaev 已提交
420

421 422 423 424 425 426 427 428 429 430
    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;
431
    CV_PROP std::vector<float> svmDetector;
K
Konstantin Matskevich 已提交
432
    UMat oclSvmDetector;
K
fixes  
Konstantin Matskevich 已提交
433
    float free_coef;
434
    CV_PROP int nlevels;
435
    CV_PROP bool signedGradient;
436 437


M
Maksim Shabunin 已提交
438
    //! evaluate specified ROI and return confidence value for each location
K
fixes  
Konstantin Matskevich 已提交
439
    virtual void detectROI(const cv::Mat& img, const std::vector<cv::Point> &locations,
440 441 442 443
                                   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 已提交
444
    //! evaluate specified ROI and return confidence value for each location in multiple scales
K
fixes  
Konstantin Matskevich 已提交
445
    virtual void detectMultiScaleROI(const cv::Mat& img,
446 447 448 449 450
                                                       CV_OUT std::vector<cv::Rect>& foundLocations,
                                                       std::vector<DetectionROI>& locations,
                                                       double hitThreshold = 0,
                                                       int groupThreshold = 0) const;

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

M
Maksim Shabunin 已提交
456 457
//! @} objdetect

458 459
}

460
#include "opencv2/objdetect/detection_based_tracker.hpp"
461

462 463 464 465
#ifndef DISABLE_OPENCV_24_COMPATIBILITY
#include "opencv2/objdetect/objdetect_c.h"
#endif

466
#endif