5
#ifndef OPENCV_TRACKING_DETAIL_HPP
6
#define OPENCV_TRACKING_DETAIL_HPP
18
#include "opencv2/video/detail/tracking.detail.hpp"
20
#include "feature.hpp"
21
#include "onlineBoosting.hpp"
25
inline
namespace
tracking {
380
void
clearResponses();
381
bool
blockAddTrackerFeature;
383
std::vector<std::pair<String, Ptr<TrackerContribFeature> > > features;
384
std::vector<Mat> responses;
421
virtual
bool
sampling(
const
Mat& image,
const
Rect& boundingBox, std::vector<Mat>& sample) CV_OVERRIDE;
430
virtual
bool
samplingImpl(
const
Mat& image,
Rect
boundingBox, std::vector<Mat>& sample ) = 0;
468
const
std::vector<std::pair<String, Ptr<TrackerContribSamplerAlgorithm> > >&
getSamplers()
const;
503
std::vector<std::pair<String, Ptr<TrackerContribSamplerAlgorithm> > > samplers;
504
std::vector<Mat> samples;
505
bool
blockAddTrackerSampler;
603
void
updateImpl( std::vector<ConfidenceMap>& confidenceMaps ) CV_OVERRIDE;
608
int
numBaseClassifier;
614
std::vector<int> replacedClassifier;
615
std::vector<int> swappedClassifier;
632
void
updateImpl( std::vector<ConfidenceMap>& confidenceMaps ) CV_OVERRIDE;
686
bool
samplingImpl(
const
Mat& image,
Rect
boundingBox, std::vector<Mat>& sample) CV_OVERRIDE;
694
std::vector<Mat> sampleImage(
const
Mat& img,
int
x,
int
y,
int
w,
int
h,
float
inrad,
float
outrad = 0,
int
maxnum = 1000000 );
734
bool
samplingImpl(
const
Mat& image,
Rect
boundingBox, std::vector<Mat>& sample ) CV_OVERRIDE;
737
Rect
getTrackingROI(
float
searchFactor );
738
Rect
RectMultiply(
const
Rect
& rect,
float
f );
739
std::vector<Mat> patchesRegularScan(
const
Mat& image,
Rect
trackingROI,
Size
patchSize );
740
void
setCheckedROI(
Rect
imageROI );
790
bool
samplingImpl(
const
Mat& image,
Rect
boundingBox, std::vector<Mat>& sample ) CV_OVERRIDE;
817
void
selection(
Mat& response,
int
npoints ) CV_OVERRIDE;
821
bool
computeImpl( const std::vector<
Mat>& images,
Mat& response ) CV_OVERRIDE;
843
bool
computeImpl(
const
std::vector<Mat>& images,
Mat& response ) CV_OVERRIDE;
873
bool
extractSelected( const std::vector<
int> selFeatures, const std::vector<
Mat>& images,
Mat& response );
881
void
selection(
Mat& response,
int
npoints ) CV_OVERRIDE;
887
bool
swapFeature(
int
source,
int
target );
901
bool
computeImpl( const std::vector<
Mat>& images,
Mat& response ) CV_OVERRIDE;
924
bool
computeImpl(
const
std::vector<Mat>& images,
Mat& response ) CV_OVERRIDE;
Data structure for salient point detectors.
Definition:
core/types.hpp:712
Template matrix class derived from Mat
Definition:
mat.hpp:2199
n-dimensional dense array class
Definition:
mat.hpp:802
Random Number Generator
Definition:
core.hpp:2783
Template class for 2D rectangles
Definition:
core/types.hpp:421
Template class for specifying the size of an image or rectangle.
Definition:
core/types.hpp:316
TrackerContribFeature based on HAAR features, used by TrackerMIL and many others algorithms
Definition:
tracking_internals.hpp:851
TrackerContribFeatureHAAR(const TrackerContribFeatureHAAR::Params ¶meters=TrackerContribFeatureHAAR::Params())
Constructor
Abstract base class for TrackerContribFeature that represents the feature.
Definition:
tracking_internals.hpp:268
virtual void selection(Mat &response, int npoints)=0
Identify most effective features
String getClassName() const
Get the name of the specific TrackerContribFeature
static Ptr< TrackerContribFeature > create(const String &trackerFeatureType)
Create TrackerContribFeature by tracker feature type
Class that manages the extraction and selection of features
Definition:
tracking_internals.hpp:316
const std::vector< Mat > & getResponses() const
Get the responses
void removeOutliers()
Remove outliers for all feature types (optional)
void selection()
Identify most effective features for all feature types (optional)
bool addTrackerFeature(Ptr< TrackerContribFeature > &feature)
bool addTrackerFeature(String trackerFeatureType)
Add TrackerContribFeature in the collection. Return true if TrackerContribFeature is added,...
void extraction(const std::vector< Mat > &images)
Extract features from the images collection
const std::vector< std::pair< String, Ptr< TrackerContribFeature > > > & getTrackerFeature() const
Get the TrackerContribFeature collection (TrackerContribFeature name, TrackerContribFeature pointer)
Abstract base class for TrackerContribSamplerAlgorithm that represents the algorithm for the specific...
Definition:
tracking_internals.hpp:395
virtual bool sampling(const Mat &image, const Rect &boundingBox, std::vector< Mat > &sample) CV_OVERRIDE
Computes the regions starting from a position in an image.
virtual ~TrackerContribSamplerAlgorithm()
Destructor
static Ptr< TrackerContribSamplerAlgorithm > create(const String &trackerSamplerType)
Create TrackerContribSamplerAlgorithm by tracker sampler type.
String getClassName() const
Get the name of the specific TrackerContribSamplerAlgorithm
TrackerSampler based on CSC (current state centered), used by MIL algorithm TrackerMIL
Definition:
tracking_internals.hpp:642
TrackerContribSamplerCSC(const TrackerContribSamplerCSC::Params ¶meters=TrackerContribSamplerCSC::Params())
Constructor
void setMode(int samplingMode)
Set the sampling mode of TrackerContribSamplerCSC
Class that manages the sampler in order to select regions for the update the model of the tracker [AA...
Definition:
tracking_internals.hpp:447
const std::vector< Mat > & getSamples() const
Return the samples from all TrackerContribSamplerAlgorithm, Fig. 1 variable Sk
const std::vector< std::pair< String, Ptr< TrackerContribSamplerAlgorithm > > > & getSamplers() const
Return the collection of the TrackerContribSamplerAlgorithm
TrackerContribSampler()
Constructor
bool addTrackerSamplerAlgorithm(String trackerSamplerAlgorithmType)
Add TrackerContribSamplerAlgorithm in the collection. Return true if sampler is added,...
bool addTrackerSamplerAlgorithm(Ptr< TrackerContribSamplerAlgorithm > &sampler)
~TrackerContribSampler()
Destructor
void sampling(const Mat &image, Rect boundingBox)
Computes the regions starting from a position in an image
TrackerContribFeature based on Feature2D
Definition:
tracking_internals.hpp:805
TrackerFeatureFeature2d(String detectorType, String descriptorType)
Constructor
TrackerContribFeature based on HOG
Definition:
tracking_internals.hpp:832
void selection(Mat &response, int npoints) CV_OVERRIDE
Identify most effective features
Abstract base class for TrackerFeature that represents the feature.
Definition:
tracking.detail.hpp:33
TrackerContribFeature based on LBP
Definition:
tracking_internals.hpp:913
void selection(Mat &response, int npoints) CV_OVERRIDE
Identify most effective features
Abstract base class for TrackerSamplerAlgorithm that represents the algorithm for the specific sample...
Definition:
tracking.detail.hpp:99
TrackerContribSampler based on CS (current state), used by algorithm TrackerBoosting
Definition:
tracking_internals.hpp:701
void setMode(int samplingMode)
Set the sampling mode of TrackerSamplerCS
TrackerSamplerCS(const TrackerSamplerCS::Params ¶meters=TrackerSamplerCS::Params())
Constructor
This sampler is based on particle filtering.
Definition:
tracking_internals.hpp:768
TrackerSamplerPF(const Mat &chosenRect, const TrackerSamplerPF::Params ¶meters=TrackerSamplerPF::Params())
Constructor
Implementation of the target state for TrackerAdaBoostingTargetState
Definition:
tracking_internals.hpp:519
void setTargetFg(bool foreground)
Set label: true for target foreground, false for background
TrackerAdaBoostingTargetState(const Point2f &position, int width, int height, bool foreground, const Mat &responses)
Constructor
Mat getTargetResponses() const
Get the features extracted
~TrackerAdaBoostingTargetState()
Destructor
Definition:
tracking_internals.hpp:535
bool isTargetFg() const
Get the label. Return true for target foreground, false for background
void setTargetResponses(const Mat &responses)
Set the features extracted from TrackerContribFeatureSet
TrackerStateEstimatorAdaBoosting based on ADA-Boosting
Definition:
tracking_internals.hpp:514
std::vector< int > computeSwappedClassifier()
Get the list of the weak classifiers that replace those to be replaced
~TrackerStateEstimatorAdaBoosting()
Destructor
Rect getSampleROI() const
Get the sampling ROI
void setSampleROI(const Rect &ROI)
Set the sampling ROI
void setCurrentConfidenceMap(ConfidenceMap &confidenceMap)
Set the current confidenceMap
std::vector< int > computeReplacedClassifier()
Get the list of the weak classifiers that should be replaced
std::vector< int > computeSelectedWeakClassifier()
Get the list of the selected weak classifiers for the classification step
TrackerStateEstimatorAdaBoosting(int numClassifer, int initIterations, int nFeatures, Size patchSize, const Rect &ROI)
Constructor
Abstract base class for TrackerStateEstimator that estimates the most likely target state.
Definition:
tracking.detail.hpp:231
TrackerStateEstimator based on SVM
Definition:
tracking_internals.hpp:625
Abstract base class for TrackerTargetState that represents a possible state of the target.
Definition:
tracking.detail.hpp:172
Definition:
feature.hpp:220
std::vector< std::pair< Ptr< TrackerTargetState >, float > > ConfidenceMap
Represents the model of the target at frame (all states and scores)
Definition:
tracking.detail.hpp:214
"black box" representation of the file storage associated with a file on disk.
Definition:
aruco.hpp:75
Definition:
cvstd_wrapper.hpp:74
Definition:
tracking_internals.hpp:854
bool isIntegral
true if input images are integral, false otherwise
Definition:
tracking_internals.hpp:858
Size rectSize
rect size
Definition:
tracking_internals.hpp:857
int numFeatures
Definition:
tracking_internals.hpp:856
Definition:
tracking_internals.hpp:654
float initInRad
radius for gathering positive instances during init
Definition:
tracking_internals.hpp:656
int trackMaxPosNum
Definition:
tracking_internals.hpp:660
int initMaxNegNum
Definition:
tracking_internals.hpp:659
float searchWinSize
size of search window
Definition:
tracking_internals.hpp:658
float trackInPosRad
radius for gathering positive instances during tracking
Definition:
tracking_internals.hpp:657
int trackMaxNegNum
Definition:
tracking_internals.hpp:661
Definition:
tracking_internals.hpp:711
float overlap
overlapping for the search windows
Definition:
tracking_internals.hpp:713
float searchFactor
search region parameter
Definition:
tracking_internals.hpp:714
This structure contains all the parameters that can be varied during the course of sampling algorithm...
Definition:
tracking_internals.hpp:775
Mat_< double > std
Definition:
tracking_internals.hpp:781
int particlesNum
number of "perturbed" boxes on each round
Definition:
tracking_internals.hpp:778
double alpha
Definition:
tracking_internals.hpp:779
int iterationNum
number of selection rounds
Definition:
tracking_internals.hpp:777