1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456 |
- #ifndef __OPENCV_TRACKER_HPP__
- #define __OPENCV_TRACKER_HPP__
- #include "opencv2/core.hpp"
- #include "opencv2/imgproc/types_c.h"
- #include "feature.hpp"
- #include "onlineMIL.hpp"
- #include "onlineBoosting.hpp"
- #include <iostream>
- #define BOILERPLATE_CODE(name,classname) \
- static Ptr<classname> createTracker(const classname::Params ¶meters=classname::Params());\
- virtual ~classname(){};
- namespace cv
- {
- class CV_EXPORTS TrackerFeature
- {
- public:
- virtual ~TrackerFeature();
-
- void compute( const std::vector<Mat>& images, Mat& response );
-
- static Ptr<TrackerFeature> create( const String& trackerFeatureType );
-
- virtual void selection( Mat& response, int npoints ) = 0;
-
- String getClassName() const;
- protected:
- virtual bool computeImpl( const std::vector<Mat>& images, Mat& response ) = 0;
- String className;
- };
- class CV_EXPORTS TrackerFeatureSet
- {
- public:
- TrackerFeatureSet();
- ~TrackerFeatureSet();
-
- void extraction( const std::vector<Mat>& images );
-
- void selection();
-
- void removeOutliers();
-
- bool addTrackerFeature( String trackerFeatureType );
-
- bool addTrackerFeature( Ptr<TrackerFeature>& feature );
-
- const std::vector<std::pair<String, Ptr<TrackerFeature> > >& getTrackerFeature() const;
-
- const std::vector<Mat>& getResponses() const;
- private:
- void clearResponses();
- bool blockAddTrackerFeature;
- std::vector<std::pair<String, Ptr<TrackerFeature> > > features;
- std::vector<Mat> responses;
- };
- class CV_EXPORTS TrackerSamplerAlgorithm
- {
- public:
-
- virtual ~TrackerSamplerAlgorithm();
-
- static Ptr<TrackerSamplerAlgorithm> create( const String& trackerSamplerType );
-
- bool sampling( const Mat& image, Rect boundingBox, std::vector<Mat>& sample );
-
- String getClassName() const;
- protected:
- String className;
- virtual bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample ) = 0;
- };
- class CV_EXPORTS TrackerSampler
- {
- public:
-
- TrackerSampler();
-
- ~TrackerSampler();
-
- void sampling( const Mat& image, Rect boundingBox );
-
- const std::vector<std::pair<String, Ptr<TrackerSamplerAlgorithm> > >& getSamplers() const;
-
- const std::vector<Mat>& getSamples() const;
-
- bool addTrackerSamplerAlgorithm( String trackerSamplerAlgorithmType );
-
- bool addTrackerSamplerAlgorithm( Ptr<TrackerSamplerAlgorithm>& sampler );
- private:
- std::vector<std::pair<String, Ptr<TrackerSamplerAlgorithm> > > samplers;
- std::vector<Mat> samples;
- bool blockAddTrackerSampler;
- void clearSamples();
- };
- class CV_EXPORTS TrackerTargetState
- {
- public:
- virtual ~TrackerTargetState()
- {
- }
- ;
-
- Point2f getTargetPosition() const;
-
- void setTargetPosition( const Point2f& position );
-
- int getTargetWidth() const;
-
- void setTargetWidth( int width );
-
- int getTargetHeight() const;
-
- void setTargetHeight( int height );
- protected:
- Point2f targetPosition;
- int targetWidth;
- int targetHeight;
- };
- typedef std::vector<std::pair<Ptr<TrackerTargetState>, float> > ConfidenceMap;
- typedef std::vector<Ptr<TrackerTargetState> > Trajectory;
- class CV_EXPORTS TrackerStateEstimator
- {
- public:
- virtual ~TrackerStateEstimator();
-
- Ptr<TrackerTargetState> estimate( const std::vector<ConfidenceMap>& confidenceMaps );
-
- void update( std::vector<ConfidenceMap>& confidenceMaps );
-
- static Ptr<TrackerStateEstimator> create( const String& trackeStateEstimatorType );
-
- String getClassName() const;
- protected:
- virtual Ptr<TrackerTargetState> estimateImpl( const std::vector<ConfidenceMap>& confidenceMaps ) = 0;
- virtual void updateImpl( std::vector<ConfidenceMap>& confidenceMaps ) = 0;
- String className;
- };
- class CV_EXPORTS TrackerModel
- {
- public:
-
- TrackerModel();
-
- virtual ~TrackerModel();
-
- bool setTrackerStateEstimator( Ptr<TrackerStateEstimator> trackerStateEstimator );
-
- void modelEstimation( const std::vector<Mat>& responses );
-
- void modelUpdate();
-
- bool runStateEstimator();
-
- void setLastTargetState( const Ptr<TrackerTargetState>& lastTargetState );
-
- Ptr<TrackerTargetState> getLastTargetState() const;
-
- const std::vector<ConfidenceMap>& getConfidenceMaps() const;
-
- const ConfidenceMap& getLastConfidenceMap() const;
-
- Ptr<TrackerStateEstimator> getTrackerStateEstimator() const;
- private:
- void clearCurrentConfidenceMap();
- protected:
- std::vector<ConfidenceMap> confidenceMaps;
- Ptr<TrackerStateEstimator> stateEstimator;
- ConfidenceMap currentConfidenceMap;
- Trajectory trajectory;
- int maxCMLength;
- virtual void modelEstimationImpl( const std::vector<Mat>& responses ) = 0;
- virtual void modelUpdateImpl() = 0;
- };
- class CV_EXPORTS_W Tracker : public virtual Algorithm
- {
- public:
- virtual ~Tracker();
-
- CV_WRAP bool init( const Mat& image, const Rect2d& boundingBox );
-
- CV_WRAP bool update( const Mat& image, CV_OUT Rect2d& boundingBox );
-
- CV_WRAP static Ptr<Tracker> create( const String& trackerType );
- virtual void read( const FileNode& fn )=0;
- virtual void write( FileStorage& fs ) const=0;
- Ptr<TrackerModel> getModel()
- {
- return model;
- }
- protected:
- virtual bool initImpl( const Mat& image, const Rect2d& boundingBox ) = 0;
- virtual bool updateImpl( const Mat& image, Rect2d& boundingBox ) = 0;
- bool isInit;
- Ptr<TrackerFeatureSet> featureSet;
- Ptr<TrackerSampler> sampler;
- Ptr<TrackerModel> model;
- };
- class CV_EXPORTS TrackerStateEstimatorMILBoosting : public TrackerStateEstimator
- {
- public:
-
- class TrackerMILTargetState : public TrackerTargetState
- {
- public:
-
- TrackerMILTargetState( const Point2f& position, int width, int height, bool foreground, const Mat& features );
-
- ~TrackerMILTargetState()
- {
- }
- ;
-
- void setTargetFg( bool foreground );
-
- void setFeatures( const Mat& features );
-
- bool isTargetFg() const;
-
- Mat getFeatures() const;
- private:
- bool isTarget;
- Mat targetFeatures;
- };
-
- TrackerStateEstimatorMILBoosting( int nFeatures = 250 );
- ~TrackerStateEstimatorMILBoosting();
-
- void setCurrentConfidenceMap( ConfidenceMap& confidenceMap );
- protected:
- Ptr<TrackerTargetState> estimateImpl( const std::vector<ConfidenceMap>& confidenceMaps );
- void updateImpl( std::vector<ConfidenceMap>& confidenceMaps );
- private:
- uint max_idx( const std::vector<float> &v );
- void prepareData( const ConfidenceMap& confidenceMap, Mat& positive, Mat& negative );
- ClfMilBoost boostMILModel;
- bool trained;
- int numFeatures;
- ConfidenceMap currentConfidenceMap;
- };
- class CV_EXPORTS TrackerStateEstimatorAdaBoosting : public TrackerStateEstimator
- {
- public:
-
- class TrackerAdaBoostingTargetState : public TrackerTargetState
- {
- public:
-
- TrackerAdaBoostingTargetState( const Point2f& position, int width, int height, bool foreground, const Mat& responses );
-
- ~TrackerAdaBoostingTargetState()
- {
- }
- ;
-
- void setTargetResponses( const Mat& responses );
-
- void setTargetFg( bool foreground );
-
- Mat getTargetResponses() const;
-
- bool isTargetFg() const;
- private:
- bool isTarget;
- Mat targetResponses;
- };
-
- TrackerStateEstimatorAdaBoosting( int numClassifer, int initIterations, int nFeatures, Size patchSize, const Rect& ROI );
-
- ~TrackerStateEstimatorAdaBoosting();
-
- Rect getSampleROI() const;
-
- void setSampleROI( const Rect& ROI );
-
- void setCurrentConfidenceMap( ConfidenceMap& confidenceMap );
-
- std::vector<int> computeSelectedWeakClassifier();
-
- std::vector<int> computeReplacedClassifier();
-
- std::vector<int> computeSwappedClassifier();
- protected:
- Ptr<TrackerTargetState> estimateImpl( const std::vector<ConfidenceMap>& confidenceMaps );
- void updateImpl( std::vector<ConfidenceMap>& confidenceMaps );
- Ptr<StrongClassifierDirectSelection> boostClassifier;
- private:
- int numBaseClassifier;
- int iterationInit;
- int numFeatures;
- bool trained;
- Size initPatchSize;
- Rect sampleROI;
- std::vector<int> replacedClassifier;
- std::vector<int> swappedClassifier;
- ConfidenceMap currentConfidenceMap;
- };
- class CV_EXPORTS TrackerStateEstimatorSVM : public TrackerStateEstimator
- {
- public:
- TrackerStateEstimatorSVM();
- ~TrackerStateEstimatorSVM();
- protected:
- Ptr<TrackerTargetState> estimateImpl( const std::vector<ConfidenceMap>& confidenceMaps );
- void updateImpl( std::vector<ConfidenceMap>& confidenceMaps );
- };
- class CV_EXPORTS TrackerSamplerCSC : public TrackerSamplerAlgorithm
- {
- public:
- enum
- {
- MODE_INIT_POS = 1,
- MODE_INIT_NEG = 2,
- MODE_TRACK_POS = 3,
- MODE_TRACK_NEG = 4,
- MODE_DETECT = 5
- };
- struct CV_EXPORTS Params
- {
- Params();
- float initInRad;
- float trackInPosRad;
- float searchWinSize;
- int initMaxNegNum;
- int trackMaxPosNum;
- int trackMaxNegNum;
- };
-
- TrackerSamplerCSC( const TrackerSamplerCSC::Params ¶meters = TrackerSamplerCSC::Params() );
-
- void setMode( int samplingMode );
- ~TrackerSamplerCSC();
- protected:
- bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample );
- private:
- Params params;
- int mode;
- RNG rng;
- std::vector<Mat> sampleImage( const Mat& img, int x, int y, int w, int h, float inrad, float outrad = 0, int maxnum = 1000000 );
- };
- class CV_EXPORTS TrackerSamplerCS : public TrackerSamplerAlgorithm
- {
- public:
- enum
- {
- MODE_POSITIVE = 1,
- MODE_NEGATIVE = 2,
- MODE_CLASSIFY = 3
- };
- struct CV_EXPORTS Params
- {
- Params();
- float overlap;
- float searchFactor;
- };
-
- TrackerSamplerCS( const TrackerSamplerCS::Params ¶meters = TrackerSamplerCS::Params() );
-
- void setMode( int samplingMode );
- ~TrackerSamplerCS();
- bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample );
- Rect getROI() const;
- private:
- Rect getTrackingROI( float searchFactor );
- Rect RectMultiply( const Rect & rect, float f );
- std::vector<Mat> patchesRegularScan( const Mat& image, Rect trackingROI, Size patchSize );
- void setCheckedROI( Rect imageROI );
- Params params;
- int mode;
- Rect trackedPatch;
- Rect validROI;
- Rect ROI;
- };
- class CV_EXPORTS TrackerSamplerPF : public TrackerSamplerAlgorithm
- {
- public:
-
- struct CV_EXPORTS Params
- {
- Params();
- int iterationNum;
- int particlesNum;
- double alpha;
-
- Mat_<double> std;
-
- };
-
- TrackerSamplerPF(const Mat& chosenRect,const TrackerSamplerPF::Params ¶meters = TrackerSamplerPF::Params());
- protected:
- bool samplingImpl( const Mat& image, Rect boundingBox, std::vector<Mat>& sample );
- private:
- Params params;
- Ptr<MinProblemSolver> _solver;
- Ptr<MinProblemSolver::Function> _function;
- };
- class CV_EXPORTS TrackerFeatureFeature2d : public TrackerFeature
- {
- public:
-
- TrackerFeatureFeature2d( String detectorType, String descriptorType );
- ~TrackerFeatureFeature2d();
- void selection( Mat& response, int npoints );
- protected:
- bool computeImpl( const std::vector<Mat>& images, Mat& response );
- private:
- std::vector<KeyPoint> keypoints;
- };
- class CV_EXPORTS TrackerFeatureHOG : public TrackerFeature
- {
- public:
- TrackerFeatureHOG();
- ~TrackerFeatureHOG();
- void selection( Mat& response, int npoints );
- protected:
- bool computeImpl( const std::vector<Mat>& images, Mat& response );
- };
- class CV_EXPORTS TrackerFeatureHAAR : public TrackerFeature
- {
- public:
- struct CV_EXPORTS Params
- {
- Params();
- int numFeatures;
- Size rectSize;
- bool isIntegral;
- };
-
- TrackerFeatureHAAR( const TrackerFeatureHAAR::Params ¶meters = TrackerFeatureHAAR::Params() );
- ~TrackerFeatureHAAR();
-
- bool extractSelected( const std::vector<int> selFeatures, const std::vector<Mat>& images, Mat& response );
-
- void selection( Mat& response, int npoints );
-
- bool swapFeature( int source, int target );
-
- bool swapFeature( int id, CvHaarEvaluator::FeatureHaar& feature );
-
- CvHaarEvaluator::FeatureHaar& getFeatureAt( int id );
- protected:
- bool computeImpl( const std::vector<Mat>& images, Mat& response );
- private:
- Params params;
- Ptr<CvHaarEvaluator> featureEvaluator;
- };
- class CV_EXPORTS TrackerFeatureLBP : public TrackerFeature
- {
- public:
- TrackerFeatureLBP();
- ~TrackerFeatureLBP();
- void selection( Mat& response, int npoints );
- protected:
- bool computeImpl( const std::vector<Mat>& images, Mat& response );
- };
- class CV_EXPORTS TrackerMIL : public Tracker
- {
- public:
- struct CV_EXPORTS Params
- {
- Params();
-
- float samplerInitInRadius;
- int samplerInitMaxNegNum;
- float samplerSearchWinSize;
- float samplerTrackInRadius;
- int samplerTrackMaxPosNum;
- int samplerTrackMaxNegNum;
- int featureSetNumFeatures;
- void read( const FileNode& fn );
- void write( FileStorage& fs ) const;
- };
-
- BOILERPLATE_CODE("MIL",TrackerMIL);
- };
- class CV_EXPORTS TrackerBoosting : public Tracker
- {
- public:
- struct CV_EXPORTS Params
- {
- Params();
- int numClassifiers;
- float samplerOverlap;
- float samplerSearchFactor;
- int iterationInit;
- int featureSetNumFeatures;
-
- void read( const FileNode& fn );
-
- void write( FileStorage& fs ) const;
- };
-
- BOILERPLATE_CODE("BOOSTING",TrackerBoosting);
- };
- class CV_EXPORTS TrackerMedianFlow : public Tracker
- {
- public:
- struct CV_EXPORTS Params
- {
- Params();
- int pointsInGrid;
-
- void read( const FileNode& );
- void write( FileStorage& ) const;
- };
-
- BOILERPLATE_CODE("MEDIANFLOW",TrackerMedianFlow);
- };
- class CV_EXPORTS TrackerTLD : public Tracker
- {
- public:
- struct CV_EXPORTS Params
- {
- Params();
- void read( const FileNode& );
- void write( FileStorage& ) const;
- };
-
- BOILERPLATE_CODE("TLD",TrackerTLD);
- };
- class CV_EXPORTS TrackerKCF : public Tracker
- {
- public:
-
- enum MODE {
- GRAY = (1u << 0),
- CN = (1u << 1),
- CUSTOM = (1u << 2)
- };
- struct CV_EXPORTS Params
- {
-
- Params();
-
- void read(const FileNode& );
-
- void write(FileStorage& ) const;
- double sigma;
- double lambda;
- double interp_factor;
- double output_sigma_factor;
- double pca_learning_rate;
- bool resize;
- bool split_coeff;
- bool wrap_kernel;
- bool compress_feature;
- int max_patch_size;
- int compressed_size;
- unsigned int desc_pca;
- unsigned int desc_npca;
- };
- virtual void setFeatureExtractor(void(*)(const Mat, const Rect, Mat&), bool pca_func = false);
-
- BOILERPLATE_CODE("KCF", TrackerKCF);
- };
- class CV_EXPORTS_W MultiTracker
- {
- public:
-
- CV_WRAP MultiTracker(const String& trackerType = "");
-
- ~MultiTracker();
-
- CV_WRAP bool add(const Mat& image, const Rect2d& boundingBox);
-
- CV_WRAP bool add(const String& trackerType, const Mat& image, const Rect2d& boundingBox);
-
- CV_WRAP bool add(const String& trackerType, const Mat& image, std::vector<Rect2d> boundingBox);
-
- CV_WRAP bool add(const Mat& image, std::vector<Rect2d> boundingBox);
-
- bool update(const Mat& image);
-
- std::vector<Rect2d> objects;
-
- CV_WRAP bool update(const Mat& image, CV_OUT std::vector<Rect2d> & boundingBox);
- protected:
-
- std::vector< Ptr<Tracker> > trackerList;
-
- String defaultAlgorithm;
- };
- class ROISelector {
- public:
- Rect2d select(Mat img, bool fromCenter = true);
- Rect2d select(const cv::String& windowName, Mat img, bool showCrossair = true, bool fromCenter = true);
- void select(const cv::String& windowName, Mat img, std::vector<Rect2d> & boundingBox, bool fromCenter = true);
- struct handlerT{
-
- bool isDrawing;
- Rect2d box;
- Mat image;
-
- bool drawFromCenter;
- Point2f center;
-
- handlerT() : isDrawing(false), drawFromCenter(true) {};
- }selectorParams;
-
- std::vector<handlerT> objects;
- private:
- static void mouseHandler(int event, int x, int y, int flags, void *param);
- void opencv_mouse_callback(int event, int x, int y, int, void *param);
-
- int key;
- };
- Rect2d CV_EXPORTS_W selectROI(Mat img, bool fromCenter = true);
- Rect2d CV_EXPORTS_W selectROI(const cv::String& windowName, Mat img, bool showCrossair = true, bool fromCenter = true);
- void CV_EXPORTS_W selectROI(const cv::String& windowName, Mat img, std::vector<Rect2d> & boundingBox, bool fromCenter = true);
- class CV_EXPORTS MultiTracker_Alt
- {
- public:
-
- MultiTracker_Alt()
- {
- targetNum = 0;
- }
-
- bool addTarget(const Mat& image, const Rect2d& boundingBox, String tracker_algorithm_name);
-
- bool update(const Mat& image);
-
- int targetNum;
-
- std::vector <Ptr<Tracker> > trackers;
-
- std::vector <Rect2d> boundingBoxes;
-
- std::vector<Scalar> colors;
- };
- class CV_EXPORTS MultiTrackerTLD : public MultiTracker_Alt
- {
- public:
-
- bool update_opt(const Mat& image);
- };
- }
- #endif
|