OpenCV 4.5.3(日本語機械翻訳)
tracking_internals.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 #ifndef OPENCV_TRACKING_DETAIL_HPP
6 #define OPENCV_TRACKING_DETAIL_HPP
7
8 /*
9 * Partially based on:
10 * ====================================================================================================================
11 * - [AAM] S. Salti, A. Cavallaro, L. Di Stefano, Adaptive Appearance Modeling for Video Tracking: Survey and Evaluation
12 * - [AMVOT] X. Li, W. Hu, C. Shen, Z. Zhang, A. Dick, A. van den Hengel, A Survey of Appearance Models in Visual Object Tracking
13 *
14 * This Tracking API has been designed with PlantUML. If you modify this API please change UML files under modules/tracking/doc/uml
15 *
16 */
17
18 #include "opencv2/video/detail/tracking.detail.hpp"
19
20 #include "feature.hpp" // CvHaarEvaluator
21 #include "onlineBoosting.hpp" // StrongClassifierDirectSelection
22
23 namespace cv {
24 namespace detail {
25 inline namespace tracking {
26
263 /************************************ TrackerContribFeature Base Classes ************************************/
264
267 class CV_EXPORTS TrackerContribFeature : public TrackerFeature
268{
269 public:
270 virtual ~TrackerContribFeature();
271
285 static Ptr<TrackerContribFeature> create( const String& trackerFeatureType );
286
293 virtual void selection( Mat& response, int npoints ) = 0;
294
297 String getClassName() const;
298
299 protected:
300 String className;
301};
302
315 class CV_EXPORTS TrackerContribFeatureSet
316{
317 public:
318
320
322
326 void extraction( const std::vector<Mat>& images );
327
330 void selection();
331
335
361 bool addTrackerFeature( String trackerFeatureType );
362
367
370 const std::vector<std::pair<String, Ptr<TrackerContribFeature> > >& getTrackerFeature() const;
371
376 const std::vector<Mat>& getResponses() const;
377
378 private:
379
380 void clearResponses();
381 bool blockAddTrackerFeature;
382
383 std::vector<std::pair<String, Ptr<TrackerContribFeature> > > features; //list of features
384 std::vector<Mat> responses; //list of response after compute
385
386};
387
388
389 /************************************ TrackerContribSampler Base Classes ************************************/
390
395{
396 public:
401
410 static Ptr<TrackerContribSamplerAlgorithm> create( const String& trackerSamplerType );
411
421 virtual bool sampling(const Mat& image, const Rect& boundingBox, std::vector<Mat>& sample) CV_OVERRIDE;
422
425 String getClassName() const;
426
427 protected:
428 String className;
429
430 virtual bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample ) = 0;
431};
432
446 class CV_EXPORTS TrackerContribSampler
447{
448 public:
449
454
459
464 void sampling( const Mat& image, Rect boundingBox );
465
468 const std::vector<std::pair<String, Ptr<TrackerContribSamplerAlgorithm> > >& getSamplers() const;
469
472 const std::vector<Mat>& getSamples() const;
473
495 bool addTrackerSamplerAlgorithm( String trackerSamplerAlgorithmType );
496
501
502 private:
503 std::vector<std::pair<String, Ptr<TrackerContribSamplerAlgorithm> > > samplers;
504 std::vector<Mat> samples;
505 bool blockAddTrackerSampler;
506
507 void clearSamples();
508};
509
510
514{
515 public:
519 {
520
521 public:
530 TrackerAdaBoostingTargetState( const Point2f& position, int width, int height, bool foreground, const Mat& responses );
531
536 {
537 }
538 ;
539
543 void setTargetResponses( const Mat& responses );
547 void setTargetFg( bool foreground );
553 bool isTargetFg() const;
554
555 private:
556 bool isTarget;
557 Mat targetResponses;
558
559 };
560
568 TrackerStateEstimatorAdaBoosting( int numClassifer, int initIterations, int nFeatures, Size patchSize, const Rect& ROI );
569
574
578
582 void setSampleROI( const Rect& ROI );
583
588
592
595 std::vector<int> computeReplacedClassifier();
596
599 std::vector<int> computeSwappedClassifier();
600
601 protected:
602 Ptr<TrackerTargetState> estimateImpl( const std::vector<ConfidenceMap>& confidenceMaps ) CV_OVERRIDE;
603 void updateImpl( std::vector<ConfidenceMap>& confidenceMaps ) CV_OVERRIDE;
604
606
607 private:
608 int numBaseClassifier;
609 int iterationInit;
610 int numFeatures;
611 bool trained;
612 Size initPatchSize;
613 Rect sampleROI;
614 std::vector<int> replacedClassifier;
615 std::vector<int> swappedClassifier;
616
617 ConfidenceMap currentConfidenceMap;
618};
619
620
625{
626 public:
629
630 protected:
631 Ptr<TrackerTargetState> estimateImpl( const std::vector<ConfidenceMap>& confidenceMaps ) CV_OVERRIDE;
632 void updateImpl( std::vector<ConfidenceMap>& confidenceMaps ) CV_OVERRIDE;
633};
634
635
636
637 /************************************ Specific TrackerSamplerAlgorithm Classes ************************************/
638
642{
643 public:
644 enum
645 {
646 MODE_INIT_POS = 1,
647 MODE_INIT_NEG = 2,
648 MODE_TRACK_POS = 3,
649 MODE_TRACK_NEG = 4,
650 MODE_DETECT = 5
651 };
652
653 struct CV_EXPORTS Params
654 {
655 Params();
656 float initInRad;
662 };
663
668
680 void setMode( int samplingMode );
681
683
684 protected:
685
686 bool samplingImpl(const Mat& image, Rect boundingBox, std::vector<Mat>& sample) CV_OVERRIDE;
687
688 private:
689
690 Params params;
691 int mode;
692 RNG rng;
693
694 std::vector<Mat> sampleImage( const Mat& img, int x, int y, int w, int h, float inrad, float outrad = 0, int maxnum = 1000000 );
695};
696
697
701{
702 public:
703 enum
704 {
705 MODE_POSITIVE = 1,
706 MODE_NEGATIVE = 2,
707 MODE_CLASSIFY = 3
708 };
709
710 struct CV_EXPORTS Params
711 {
712 Params();
713 float overlap;
715 };
720
730 void setMode( int samplingMode );
731
733
734 bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample ) CV_OVERRIDE;
735 Rect getROI() const;
736 private:
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 );
741
742 Params params;
743 int mode;
744 Rect trackedPatch;
745 Rect validROI;
746 Rect ROI;
747
748};
749
768{
769 public:
774 struct CV_EXPORTS Params
775 {
776 Params();
779 double alpha;
783 };
789 protected:
790 bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample ) CV_OVERRIDE;
791 private:
792 Params params;
793 Ptr<MinProblemSolver> _solver;
795};
796
797
798
799 /************************************ Specific TrackerContribFeature Classes ************************************/
800
805{
806 public:
807
813 TrackerFeatureFeature2d( String detectorType, String descriptorType );
814
815 ~TrackerFeatureFeature2d() CV_OVERRIDE;
816
817 void selection( Mat& response, int npoints ) CV_OVERRIDE;
818
819 protected:
820
821 bool computeImpl( const std::vector<Mat>& images, Mat& response ) CV_OVERRIDE;
822
823 private:
824
825 std::vector<KeyPoint> keypoints;
826};
827
831 class CV_EXPORTS TrackerFeatureHOG : public TrackerContribFeature
832{
833 public:
834
836
837 ~TrackerFeatureHOG() CV_OVERRIDE;
838
839 void selection( Mat& response, int npoints ) CV_OVERRIDE;
840
841 protected:
842
843 bool computeImpl( const std::vector<Mat>& images, Mat& response ) CV_OVERRIDE;
844
845};
846
851{
852 public:
853 struct CV_EXPORTS Params
854 {
855 Params();
859 };
860
865
866 ~TrackerContribFeatureHAAR() CV_OVERRIDE;
867
873 bool extractSelected( const std::vector<int> selFeatures, const std::vector<Mat>& images, Mat& response );
874
881 void selection( Mat& response, int npoints ) CV_OVERRIDE;
882
887 bool swapFeature( int source, int target );
888
893 bool swapFeature( int id, CvHaarEvaluator::FeatureHaar& feature );
894
898 CvHaarEvaluator::FeatureHaar& getFeatureAt( int id );
899
900 protected:
901 bool computeImpl( const std::vector<Mat>& images, Mat& response ) CV_OVERRIDE;
902
903 private:
904
905 Params params;
906 Ptr<CvHaarEvaluator> featureEvaluator;
907};
908
912 class CV_EXPORTS TrackerFeatureLBP : public TrackerContribFeature
913{
914 public:
915
917
919
920 void selection( Mat& response, int npoints ) CV_OVERRIDE;
921
922 protected:
923
924 bool computeImpl( const std::vector<Mat>& images, Mat& response ) CV_OVERRIDE;
925
926};
927
929
930}}} // namespace
931
932 #endif // OPENCV_TRACKING_DETAIL_HPP
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 &parameters=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.
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 &parameters=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
bool addTrackerSamplerAlgorithm(String trackerSamplerAlgorithmType)
Add TrackerContribSamplerAlgorithm in the collection. Return true if sampler is added,...
bool addTrackerSamplerAlgorithm(Ptr< TrackerContribSamplerAlgorithm > &sampler)
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 &parameters=TrackerSamplerCS::Params())
Constructor
This sampler is based on particle filtering.
Definition: tracking_internals.hpp:768
TrackerSamplerPF(const Mat &chosenRect, const TrackerSamplerPF::Params &parameters=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
~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
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
cv
"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