diagrams.markdown 7.31 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 47 48 49 50 51 52 53 54 55 56 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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
Tracking diagrams {#tracking_diagrams}
=================

General diagram
===============

@startuml{tracking_uml_general.png}
  package "Tracker"
  package "TrackerFeature"
  package "TrackerSampler"
  package "TrackerModel"

  Tracker -> TrackerModel: create
  Tracker -> TrackerSampler: create
  Tracker -> TrackerFeature: create
@enduml

Tracker diagram
===============

@startuml{tracking_uml_tracking.png}
  package "Tracker package" #DDDDDD {


  class Algorithm

  class Tracker{
    Ptr<TrackerFeatureSet> featureSet;
    Ptr<TrackerSampler> sampler;
    Ptr<TrackerModel> model;
    ---
    +static Ptr<Tracker> create(const string& trackerType);
    +bool init(const Mat& image, const Rect& boundingBox);
    +bool update(const Mat& image, Rect& boundingBox);
  }
  class Tracker
  note right: Tracker is the general interface for each specialized trackers
  class TrackerMIL{
    +static Ptr<TrackerMIL> createTracker(const TrackerMIL::Params &parameters);
      +virtual ~TrackerMIL();
  }
  class TrackerBoosting{
    +static Ptr<TrackerBoosting> createTracker(const TrackerBoosting::Params &parameters);
      +virtual ~TrackerBoosting();
  }
  Algorithm <|-- Tracker : virtual inheritance
  Tracker <|-- TrackerMIL
  Tracker <|-- TrackerBoosting

  note "Single instance of the Tracker" as N1
  TrackerBoosting .. N1
  TrackerMIL .. N1
  }

@enduml

TrackerFeatureSet diagram
=========================

@startuml{tracking_uml_feature.png}
  package "TrackerFeature package" #DDDDDD {

  class TrackerFeatureSet{
    -vector<pair<string, Ptr<TrackerFeature> > > features
    -vector<Mat> responses
    ...
    TrackerFeatureSet();
    ~TrackerFeatureSet();
    --
    +extraction(const std::vector<Mat>& images);
    +selection();
    +removeOutliers();
    +vector<Mat> response getResponses();
    +vector<pair<string TrackerFeatureType, Ptr<TrackerFeature> > > getTrackerFeatures();
    +bool addTrackerFeature(string trackerFeatureType);
    +bool addTrackerFeature(Ptr<TrackerFeature>& feature);
    -clearResponses();
  }

  class TrackerFeature <<virtual>>{
    static Ptr<TrackerFeature> = create(const string& trackerFeatureType);
    compute(const std::vector<Mat>& images, Mat& response);
    selection(Mat& response, int npoints);
  }
  note bottom: Can be specialized as in table II\nA tracker can use more types of features

  class TrackerFeatureFeature2D{
    -vector<Keypoints> keypoints
    ---
    TrackerFeatureFeature2D(string detectorType, string descriptorType);
    ~TrackerFeatureFeature2D();
    ---
    compute(const std::vector<Mat>& images, Mat& response);
    selection( Mat& response, int npoints);
  }
  class TrackerFeatureHOG{
    TrackerFeatureHOG();
    ~TrackerFeatureHOG();
    ---
    compute(const std::vector<Mat>& images, Mat& response);
    selection(Mat& response, int npoints);
  }

  TrackerFeatureSet *-- TrackerFeature
  TrackerFeature <|-- TrackerFeatureHOG
  TrackerFeature <|-- TrackerFeatureFeature2D


  note "Per readability and simplicity in this diagram\n there are only two TrackerFeature but you\n can considering the implementation of the other TrackerFeature" as N1
  TrackerFeatureHOG .. N1
  TrackerFeatureFeature2D .. N1
  }

@enduml


TrackerModel diagram
====================

@startuml{tracking_uml_model.png}
  package "TrackerModel package" #DDDDDD {

  class Typedef << (T,#FF7700) >>{
    ConfidenceMap
    Trajectory
  }

  class TrackerModel{
    -vector<ConfidenceMap> confidenceMaps;
    -Trajectory trajectory;
    -Ptr<TrackerStateEstimator> stateEstimator;
    ...
    TrackerModel();
    ~TrackerModel();

    +bool setTrackerStateEstimator(Ptr<TrackerStateEstimator> trackerStateEstimator);
    +Ptr<TrackerStateEstimator> getTrackerStateEstimator();

    +void modelEstimation(const vector<Mat>& responses);
    +void modelUpdate();
    +void setLastTargetState(const Ptr<TrackerTargetState> lastTargetState);
    +void runStateEstimator();

    +const vector<ConfidenceMap>& getConfidenceMaps();
    +const ConfidenceMap& getLastConfidenceMap();
  }
  class TrackerTargetState <<virtual>>{
    Point2f targetPosition;
    ---
    Point2f getTargetPosition();
    void setTargetPosition(Point2f position);
  }
  class TrackerTargetState
  note bottom: Each tracker can create own state

  class TrackerStateEstimator <<virtual>>{
    ~TrackerStateEstimator();
    static Ptr<TrackerStateEstimator> create(const String& trackeStateEstimatorType);
    Ptr<TrackerTargetState> estimate(const vector<ConfidenceMap>& confidenceMaps)
    void update(vector<ConfidenceMap>& confidenceMaps)
  }

  class TrackerStateEstimatorSVM{
    TrackerStateEstimatorSVM()
    ~TrackerStateEstimatorSVM()
    Ptr<TrackerTargetState> estimate(const vector<ConfidenceMap>& confidenceMaps)
    void update(vector<ConfidenceMap>& confidenceMaps)
  }
  class TrackerStateEstimatorMILBoosting{
    TrackerStateEstimatorMILBoosting()
    ~TrackerStateEstimatorMILBoosting()
    Ptr<TrackerTargetState> estimate(const vector<ConfidenceMap>& confidenceMaps)
    void update(vector<ConfidenceMap>& confidenceMaps)
  }

  TrackerModel -> TrackerStateEstimator: create
  TrackerModel *-- TrackerTargetState
  TrackerStateEstimator <|-- TrackerStateEstimatorMILBoosting
  TrackerStateEstimator <|-- TrackerStateEstimatorSVM
  }
@enduml

TrackerSampler diagram
======================

@startuml{tracking_uml_sampler.png}
  package "TrackerSampler package" #DDDDDD {

  class TrackerSampler{
    -vector<pair<String, Ptr<TrackerSamplerAlgorithm> > > samplers
    -vector<Mat> samples;
    ...
    TrackerSampler();
    ~TrackerSampler();
    +sampling(const Mat& image, Rect boundingBox);
    +const vector<pair<String, Ptr<TrackerSamplerAlgorithm> > >& getSamplers();
    +const vector<Mat>& getSamples();
    +bool addTrackerSamplerAlgorithm(String trackerSamplerAlgorithmType);
    +bool addTrackerSamplerAlgorithm(Ptr<TrackerSamplerAlgorithm>& sampler);
    ---
    -void clearSamples();
  }

  class TrackerSamplerAlgorithm{
    ~TrackerSamplerAlgorithm();
    +static Ptr<TrackerSamplerAlgorithm> create(const String& trackerSamplerType);
    +bool sampling(const Mat& image, Rect boundingBox, vector<Mat>& sample);
  }
  note bottom: A tracker could sample the target\nor it could sample the target and the background


  class TrackerSamplerCS{
    TrackerSamplerCS();
    ~TrackerSamplerCS();
    +bool sampling(const Mat& image, Rect boundingBox, vector<Mat>& sample);
  }
  class TrackerSamplerCSC{
    TrackerSamplerCSC();
    ~TrackerSamplerCSC();
    +bool sampling(const Mat& image, Rect boundingBox, vector<Mat>& sample);
  }


224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
  }
@enduml

MultiTracker diagram
======================

@startuml{tracking_uml_multiple.png}
  package "MultiTracker"
  package "Tracker"

  MultiTracker -> Tracker: create

  note top of Tracker: Several classes can be generated.
@enduml

@startuml{multi_tracker_uml.png}

  class MultiTracker{
    MultiTracker(const String& trackerType = "" );
    ~MultiTracker();
    +bool add( const Mat& image, const Rect2d& boundingBox );
    +bool add( const String& trackerType, const Mat& image, const Rect2d& boundingBox );
    +bool add(const String& trackerType, const Mat& image, std::vector<Rect2d> boundingBox);
    +bool add(const Mat& image, std::vector<Rect2d> boundingBox);
    +bool update( const Mat& image, std::vector<Rect2d> & boundingBox );
    +std::vector<Rect2d> objects;
    ---
    #std::vector< Ptr<Tracker> > trackerList;
    #String defaultAlgorithm;
  }


256
@enduml