2010-05-12 01:44:00 +08:00
|
|
|
/*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.
|
|
|
|
//
|
|
|
|
//
|
2013-04-12 16:11:11 +08:00
|
|
|
// License Agreement
|
2010-05-12 01:44:00 +08:00
|
|
|
// For Open Source Computer Vision Library
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
|
|
|
|
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
|
2013-04-12 16:11:11 +08:00
|
|
|
// Copyright (C) 2013, OpenCV Foundation, all rights reserved.
|
2010-05-12 01:44:00 +08:00
|
|
|
// 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__
|
|
|
|
|
2013-04-12 16:11:11 +08:00
|
|
|
#include "opencv2/core.hpp"
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2013-04-12 16:11:11 +08:00
|
|
|
typedef struct CvLatentSvmDetector CvLatentSvmDetector;
|
|
|
|
typedef struct CvHaarClassifierCascade CvHaarClassifierCascade;
|
2011-04-22 19:21:40 +08:00
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
namespace cv
|
|
|
|
{
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
///////////////////////////// Object Detection ////////////////////////////
|
|
|
|
|
2011-10-04 00:45:46 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2011-10-04 14:47:41 +08:00
|
|
|
class CV_EXPORTS LatentSvmDetector
|
2011-10-04 00:45:46 +08:00
|
|
|
{
|
|
|
|
public:
|
2011-10-04 14:47:41 +08:00
|
|
|
struct CV_EXPORTS ObjectDetection
|
2011-10-04 00:45:46 +08:00
|
|
|
{
|
|
|
|
ObjectDetection();
|
2013-04-12 16:11:11 +08:00
|
|
|
ObjectDetection( const Rect& rect, float score, int classID = -1 );
|
2011-10-04 00:45:46 +08:00
|
|
|
Rect rect;
|
|
|
|
float score;
|
|
|
|
int classID;
|
|
|
|
};
|
|
|
|
|
2011-10-04 14:47:41 +08:00
|
|
|
LatentSvmDetector();
|
2013-04-12 16:11:11 +08:00
|
|
|
LatentSvmDetector( const std::vector<String>& filenames, const std::vector<String>& classNames = std::vector<String>() );
|
2011-10-04 00:45:46 +08:00
|
|
|
virtual ~LatentSvmDetector();
|
|
|
|
|
2011-10-04 14:47:41 +08:00
|
|
|
virtual void clear();
|
|
|
|
virtual bool empty() const;
|
2013-04-12 16:11:11 +08:00
|
|
|
bool load( const std::vector<String>& filenames, const std::vector<String>& classNames = std::vector<String>() );
|
2011-10-04 00:45:46 +08:00
|
|
|
|
2011-10-04 14:47:41 +08:00
|
|
|
virtual void detect( const Mat& image,
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<ObjectDetection>& objectDetections,
|
2013-04-12 16:11:11 +08:00
|
|
|
float overlapThreshold = 0.5f,
|
|
|
|
int numThreads = -1 );
|
2011-10-04 00:45:46 +08:00
|
|
|
|
2013-03-23 00:37:49 +08:00
|
|
|
const std::vector<String>& getClassNames() const;
|
2011-10-04 00:45:46 +08:00
|
|
|
size_t getClassCount() const;
|
|
|
|
|
|
|
|
private:
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<CvLatentSvmDetector*> detectors;
|
2013-03-23 00:37:49 +08:00
|
|
|
std::vector<String> classNames;
|
2011-10-04 00:45:46 +08:00
|
|
|
};
|
|
|
|
|
2013-04-12 16:11:11 +08:00
|
|
|
CV_EXPORTS void groupRectangles(std::vector<Rect>& rectList, int groupThreshold, double eps = 0.2);
|
|
|
|
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 );
|
|
|
|
CV_EXPORTS void groupRectangles(std::vector<Rect>& rectList, std::vector<int>& rejectLevels,
|
|
|
|
std::vector<double>& levelWeights, int groupThreshold, double eps = 0.2);
|
|
|
|
CV_EXPORTS void groupRectangles_meanshift(std::vector<Rect>& rectList, std::vector<double>& foundWeights, std::vector<double>& foundScales,
|
2012-10-17 15:12:04 +08:00
|
|
|
double detectThreshold = 0.0, Size winDetSize = Size(64, 128));
|
2011-04-19 17:05:15 +08:00
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
class CV_EXPORTS FeatureEvaluator
|
|
|
|
{
|
2012-05-28 22:36:15 +08:00
|
|
|
public:
|
2013-04-12 16:11:11 +08:00
|
|
|
enum { HAAR = 0,
|
|
|
|
LBP = 1,
|
|
|
|
HOG = 2
|
|
|
|
};
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
virtual ~FeatureEvaluator();
|
2010-12-14 18:17:45 +08:00
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
virtual bool read(const FileNode& node);
|
|
|
|
virtual Ptr<FeatureEvaluator> clone() const;
|
|
|
|
virtual int getFeatureType() const;
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2012-05-28 15:36:14 +08:00
|
|
|
virtual bool setImage(const Mat& img, Size origWinSize);
|
2010-05-12 01:44:00 +08:00
|
|
|
virtual bool setWindow(Point p);
|
|
|
|
|
|
|
|
virtual double calcOrd(int featureIdx) const;
|
|
|
|
virtual int calcCat(int featureIdx) const;
|
|
|
|
|
|
|
|
static Ptr<FeatureEvaluator> create(int type);
|
|
|
|
};
|
|
|
|
|
|
|
|
template<> CV_EXPORTS void Ptr<CvHaarClassifierCascade>::delete_obj();
|
2011-07-19 20:27:07 +08:00
|
|
|
|
2013-04-12 16:11:11 +08:00
|
|
|
enum { CASCADE_DO_CANNY_PRUNING = 1,
|
|
|
|
CASCADE_SCALE_IMAGE = 2,
|
|
|
|
CASCADE_FIND_BIGGEST_OBJECT = 4,
|
|
|
|
CASCADE_DO_ROUGH_SEARCH = 8
|
|
|
|
};
|
2011-07-19 20:27:07 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
class CV_EXPORTS_W CascadeClassifier
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
public:
|
2010-10-28 02:26:39 +08:00
|
|
|
CV_WRAP CascadeClassifier();
|
2013-03-23 00:37:49 +08:00
|
|
|
CV_WRAP CascadeClassifier( const String& filename );
|
2010-12-14 18:17:45 +08:00
|
|
|
virtual ~CascadeClassifier();
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-12-14 18:17:45 +08:00
|
|
|
CV_WRAP virtual bool empty() const;
|
2013-03-23 00:37:49 +08:00
|
|
|
CV_WRAP bool load( const String& filename );
|
2011-02-24 19:03:00 +08:00
|
|
|
virtual bool read( const FileNode& node );
|
2011-02-24 18:24:55 +08:00
|
|
|
CV_WRAP virtual void detectMultiScale( const Mat& image,
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_OUT std::vector<Rect>& objects,
|
2013-04-12 16:11:11 +08:00
|
|
|
double scaleFactor = 1.1,
|
|
|
|
int minNeighbors = 3, int flags = 0,
|
|
|
|
Size minSize = Size(),
|
|
|
|
Size maxSize = Size() );
|
2011-04-19 20:31:35 +08:00
|
|
|
|
2013-06-14 08:25:17 +08:00
|
|
|
CV_WRAP virtual void detectMultiScale( const Mat& 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() );
|
|
|
|
|
2011-04-19 20:31:35 +08:00
|
|
|
CV_WRAP virtual void detectMultiScale( const Mat& image,
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_OUT std::vector<Rect>& objects,
|
2013-04-04 15:51:52 +08:00
|
|
|
CV_OUT std::vector<int>& rejectLevels,
|
|
|
|
CV_OUT std::vector<double>& levelWeights,
|
2013-04-12 16:11:11 +08:00
|
|
|
double scaleFactor = 1.1,
|
|
|
|
int minNeighbors = 3, int flags = 0,
|
|
|
|
Size minSize = Size(),
|
|
|
|
Size maxSize = Size(),
|
|
|
|
bool outputRejectLevels = false );
|
2011-04-19 17:05:15 +08:00
|
|
|
|
2010-12-14 18:17:45 +08:00
|
|
|
|
|
|
|
bool isOldFormatCascade() const;
|
|
|
|
virtual Size getOriginalWindowSize() const;
|
|
|
|
int getFeatureType() const;
|
2010-12-15 19:21:27 +08:00
|
|
|
bool setImage( const Mat& );
|
2010-12-14 18:17:45 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool detectSingleScale( const Mat& image, int stripCount, Size processingRectSize,
|
2013-02-25 00:14:01 +08:00
|
|
|
int stripSize, int yStep, double factor, std::vector<Rect>& candidates,
|
2013-06-14 08:25:17 +08:00
|
|
|
std::vector<int>& rejectLevels, std::vector<double>& levelWeights, bool outputRejectLevels = false );
|
|
|
|
|
|
|
|
virtual void detectMultiScaleNoGrouping( const Mat& image, std::vector<Rect>& candidates,
|
|
|
|
std::vector<int>& rejectLevels, std::vector<double>& levelWeights,
|
|
|
|
double scaleFactor, Size minObjectSize, Size maxObjectSize,
|
|
|
|
bool outputRejectLevels = false );
|
2010-12-14 18:17:45 +08:00
|
|
|
|
2011-02-24 18:24:55 +08:00
|
|
|
protected:
|
2013-04-12 16:11:11 +08:00
|
|
|
enum { BOOST = 0
|
|
|
|
};
|
|
|
|
enum { DO_CANNY_PRUNING = CASCADE_DO_CANNY_PRUNING,
|
|
|
|
SCALE_IMAGE = CASCADE_SCALE_IMAGE,
|
|
|
|
FIND_BIGGEST_OBJECT = CASCADE_FIND_BIGGEST_OBJECT,
|
|
|
|
DO_ROUGH_SEARCH = CASCADE_DO_ROUGH_SEARCH
|
|
|
|
};
|
2010-12-14 18:17:45 +08:00
|
|
|
|
2012-11-08 06:16:04 +08:00
|
|
|
friend class CascadeClassifierInvoker;
|
2010-12-14 18:17:45 +08:00
|
|
|
|
|
|
|
template<class FEval>
|
2011-04-22 18:03:05 +08:00
|
|
|
friend int predictOrdered( CascadeClassifier& cascade, Ptr<FeatureEvaluator> &featureEvaluator, double& weight);
|
2010-12-14 18:17:45 +08:00
|
|
|
|
|
|
|
template<class FEval>
|
2011-04-22 18:03:05 +08:00
|
|
|
friend int predictCategorical( CascadeClassifier& cascade, Ptr<FeatureEvaluator> &featureEvaluator, double& weight);
|
2010-12-14 18:17:45 +08:00
|
|
|
|
|
|
|
template<class FEval>
|
2011-04-22 18:03:05 +08:00
|
|
|
friend int predictOrderedStump( CascadeClassifier& cascade, Ptr<FeatureEvaluator> &featureEvaluator, double& weight);
|
2010-12-14 18:17:45 +08:00
|
|
|
|
|
|
|
template<class FEval>
|
2011-04-22 18:03:05 +08:00
|
|
|
friend int predictCategoricalStump( CascadeClassifier& cascade, Ptr<FeatureEvaluator> &featureEvaluator, double& weight);
|
2010-12-14 18:17:45 +08:00
|
|
|
|
2012-05-29 04:11:38 +08:00
|
|
|
bool setImage( Ptr<FeatureEvaluator>& feval, const Mat& image);
|
|
|
|
virtual int runAt( Ptr<FeatureEvaluator>& feval, Point pt, double& weight );
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2010-12-14 18:17:45 +08:00
|
|
|
class Data
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct CV_EXPORTS DTreeNode
|
|
|
|
{
|
|
|
|
int featureIdx;
|
|
|
|
float threshold; // for ordered features only
|
|
|
|
int left;
|
|
|
|
int right;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CV_EXPORTS DTree
|
|
|
|
{
|
|
|
|
int nodeCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CV_EXPORTS Stage
|
|
|
|
{
|
|
|
|
int first;
|
|
|
|
int ntrees;
|
|
|
|
float threshold;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool read(const FileNode &node);
|
|
|
|
|
|
|
|
bool isStumpBased;
|
|
|
|
|
|
|
|
int stageType;
|
|
|
|
int featureType;
|
|
|
|
int ncategories;
|
|
|
|
Size origWinSize;
|
|
|
|
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<Stage> stages;
|
|
|
|
std::vector<DTree> classifiers;
|
|
|
|
std::vector<DTreeNode> nodes;
|
|
|
|
std::vector<float> leaves;
|
|
|
|
std::vector<int> subsets;
|
2010-12-14 18:17:45 +08:00
|
|
|
};
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2010-12-14 18:17:45 +08:00
|
|
|
Data data;
|
|
|
|
Ptr<FeatureEvaluator> featureEvaluator;
|
2010-05-12 01:44:00 +08:00
|
|
|
Ptr<CvHaarClassifierCascade> oldCascade;
|
2011-10-05 21:21:28 +08:00
|
|
|
|
|
|
|
public:
|
2012-02-16 03:48:04 +08:00
|
|
|
class CV_EXPORTS MaskGenerator
|
2011-10-05 21:21:28 +08:00
|
|
|
{
|
2012-02-16 03:48:04 +08:00
|
|
|
public:
|
2012-05-28 22:36:15 +08:00
|
|
|
virtual ~MaskGenerator() {}
|
2012-02-16 03:48:04 +08:00
|
|
|
virtual cv::Mat generateMask(const cv::Mat& src)=0;
|
|
|
|
virtual void initializeMask(const cv::Mat& /*src*/) {};
|
2011-10-05 21:21:28 +08:00
|
|
|
};
|
|
|
|
void setMaskGenerator(Ptr<MaskGenerator> maskGenerator);
|
|
|
|
Ptr<MaskGenerator> getMaskGenerator();
|
2011-10-21 22:56:37 +08:00
|
|
|
|
|
|
|
void setFaceDetectionMaskGenerator();
|
|
|
|
|
2011-10-05 21:21:28 +08:00
|
|
|
protected:
|
|
|
|
Ptr<MaskGenerator> maskGenerator;
|
2010-05-12 01:44:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////// HOG (Histogram-of-Oriented-Gradients) Descriptor and Object Detector //////////////
|
|
|
|
|
2012-07-25 19:26:26 +08:00
|
|
|
// struct for detection region of interest (ROI)
|
|
|
|
struct DetectionROI
|
|
|
|
{
|
|
|
|
// scale(size) of the bounding box
|
|
|
|
double scale;
|
|
|
|
// set of requrested locations to be evaluated
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<cv::Point> locations;
|
2012-07-25 19:26:26 +08:00
|
|
|
// vector that will contain confidence values for each location
|
2013-02-25 00:14:01 +08:00
|
|
|
std::vector<double> confidences;
|
2012-07-25 19:26:26 +08:00
|
|
|
};
|
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
struct CV_EXPORTS_W HOGDescriptor
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-04-12 16:11:11 +08:00
|
|
|
enum { L2Hys = 0
|
|
|
|
};
|
|
|
|
enum { DEFAULT_NLEVELS = 64
|
|
|
|
};
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
CV_WRAP HOGDescriptor() : winSize(64,128), blockSize(16,16), blockStride(8,8),
|
2012-10-17 15:12:04 +08:00
|
|
|
cellSize(8,8), nbins(9), derivAperture(1), winSigma(-1),
|
2012-05-28 22:36:15 +08:00
|
|
|
histogramNormType(HOGDescriptor::L2Hys), L2HysThreshold(0.2), gammaCorrection(true),
|
2010-11-17 00:52:20 +08:00
|
|
|
nlevels(HOGDescriptor::DEFAULT_NLEVELS)
|
2010-05-12 01:44:00 +08:00
|
|
|
{}
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
CV_WRAP HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride,
|
2010-05-12 01:44:00 +08:00
|
|
|
Size _cellSize, int _nbins, int _derivAperture=1, double _winSigma=-1,
|
2010-11-03 01:58:22 +08:00
|
|
|
int _histogramNormType=HOGDescriptor::L2Hys,
|
2010-11-17 00:52:20 +08:00
|
|
|
double _L2HysThreshold=0.2, bool _gammaCorrection=false,
|
|
|
|
int _nlevels=HOGDescriptor::DEFAULT_NLEVELS)
|
2010-05-12 01:44:00 +08:00
|
|
|
: winSize(_winSize), blockSize(_blockSize), blockStride(_blockStride), cellSize(_cellSize),
|
|
|
|
nbins(_nbins), derivAperture(_derivAperture), winSigma(_winSigma),
|
|
|
|
histogramNormType(_histogramNormType), L2HysThreshold(_L2HysThreshold),
|
2010-11-16 15:40:32 +08:00
|
|
|
gammaCorrection(_gammaCorrection), nlevels(_nlevels)
|
2010-05-12 01:44:00 +08:00
|
|
|
{}
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2013-03-23 00:37:49 +08:00
|
|
|
CV_WRAP HOGDescriptor(const String& filename)
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
load(filename);
|
|
|
|
}
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-06-01 21:53:20 +08:00
|
|
|
HOGDescriptor(const HOGDescriptor& d)
|
|
|
|
{
|
|
|
|
d.copyTo(*this);
|
|
|
|
}
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
virtual ~HOGDescriptor() {}
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
CV_WRAP size_t getDescriptorSize() const;
|
|
|
|
CV_WRAP bool checkDetectorSize() const;
|
|
|
|
CV_WRAP double getWinSigma() const;
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2011-08-15 03:46:39 +08:00
|
|
|
CV_WRAP virtual void setSVMDetector(InputArray _svmdetector);
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-06-01 21:53:20 +08:00
|
|
|
virtual bool read(FileNode& fn);
|
2013-03-23 00:37:49 +08:00
|
|
|
virtual void write(FileStorage& fs, const String& objname) const;
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2013-04-12 16:11:11 +08:00
|
|
|
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;
|
2010-06-01 21:53:20 +08:00
|
|
|
virtual void copyTo(HOGDescriptor& c) const;
|
2011-04-19 17:05:15 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
CV_WRAP virtual void compute(const Mat& img,
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_OUT std::vector<float>& descriptors,
|
2013-04-12 16:11:11 +08:00
|
|
|
Size winStride = Size(), Size padding = Size(),
|
|
|
|
const std::vector<Point>& locations = std::vector<Point>()) const;
|
2012-10-17 15:12:04 +08:00
|
|
|
//with found weights output
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_WRAP virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
|
|
|
|
CV_OUT std::vector<double>& weights,
|
2013-04-12 16:11:11 +08:00
|
|
|
double hitThreshold = 0, Size winStride = Size(),
|
|
|
|
Size padding = Size(),
|
|
|
|
const std::vector<Point>& searchLocations = std::vector<Point>()) const;
|
2012-10-17 15:12:04 +08:00
|
|
|
//without found weights output
|
2013-02-25 00:14:01 +08:00
|
|
|
virtual void detect(const Mat& img, CV_OUT std::vector<Point>& foundLocations,
|
2013-04-12 16:11:11 +08:00
|
|
|
double hitThreshold = 0, Size winStride = Size(),
|
|
|
|
Size padding = Size(),
|
2013-02-25 00:14:01 +08:00
|
|
|
const std::vector<Point>& searchLocations=std::vector<Point>()) const;
|
2012-10-17 15:12:04 +08:00
|
|
|
//with result weights output
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_WRAP virtual void detectMultiScale(const Mat& img, CV_OUT std::vector<Rect>& foundLocations,
|
2013-04-12 16:11:11 +08:00
|
|
|
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;
|
2012-10-17 15:12:04 +08:00
|
|
|
//without found weights output
|
2013-02-25 00:14:01 +08:00
|
|
|
virtual void detectMultiScale(const Mat& img, CV_OUT std::vector<Rect>& foundLocations,
|
2013-04-12 16:11:11 +08:00
|
|
|
double hitThreshold = 0, Size winStride = Size(),
|
|
|
|
Size padding = Size(), double scale = 1.05,
|
|
|
|
double finalThreshold = 2.0, bool useMeanshiftGrouping = false) const;
|
2011-04-19 17:05:15 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
CV_WRAP virtual void computeGradient(const Mat& img, CV_OUT Mat& grad, CV_OUT Mat& angleOfs,
|
2013-04-12 16:11:11 +08:00
|
|
|
Size paddingTL = Size(), Size paddingBR = Size()) const;
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_WRAP static std::vector<float> getDefaultPeopleDetector();
|
|
|
|
CV_WRAP static std::vector<float> getDaimlerPeopleDetector();
|
2012-05-28 22:36:15 +08:00
|
|
|
|
2010-10-28 02:26:39 +08:00
|
|
|
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;
|
2013-02-25 00:14:01 +08:00
|
|
|
CV_PROP std::vector<float> svmDetector;
|
2010-11-16 15:40:32 +08:00
|
|
|
CV_PROP int nlevels;
|
2012-07-25 19:26:26 +08:00
|
|
|
|
|
|
|
|
2012-10-16 23:35:57 +08:00
|
|
|
// evaluate specified ROI and return confidence value for each location
|
2013-02-25 00:14:01 +08:00
|
|
|
virtual void detectROI(const cv::Mat& img, const std::vector<cv::Point> &locations,
|
2012-10-16 23:35:57 +08:00
|
|
|
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;
|
|
|
|
|
|
|
|
// evaluate specified ROI and return confidence value for each location in multiple scales
|
|
|
|
virtual void detectMultiScaleROI(const cv::Mat& img,
|
|
|
|
CV_OUT std::vector<cv::Rect>& foundLocations,
|
|
|
|
std::vector<DetectionROI>& locations,
|
|
|
|
double hitThreshold = 0,
|
|
|
|
int groupThreshold = 0) const;
|
|
|
|
|
|
|
|
// read/parse Dalal's alt model file
|
2013-03-23 00:37:49 +08:00
|
|
|
void readALTModel(String modelfile);
|
2010-05-12 01:44:00 +08:00
|
|
|
};
|
|
|
|
|
2010-12-27 16:25:31 +08:00
|
|
|
|
2012-04-30 22:33:52 +08:00
|
|
|
CV_EXPORTS_W void findDataMatrix(InputArray image,
|
2013-03-23 00:37:49 +08:00
|
|
|
CV_OUT std::vector<String>& codes,
|
2013-04-12 16:11:11 +08:00
|
|
|
OutputArray corners = noArray(),
|
|
|
|
OutputArrayOfArrays dmtx = noArray());
|
|
|
|
|
2012-04-30 22:33:52 +08:00
|
|
|
CV_EXPORTS_W void drawDataMatrixCodes(InputOutputArray image,
|
2013-03-23 00:37:49 +08:00
|
|
|
const std::vector<String>& codes,
|
2012-04-30 22:33:52 +08:00
|
|
|
InputArray corners);
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
2013-04-12 16:11:11 +08:00
|
|
|
#include "opencv2/objdetect/linemod.hpp"
|
2013-07-20 07:10:05 +08:00
|
|
|
#include "opencv2/objdetect/erfilter.hpp"
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
#endif
|