FastDeploy  latest
Fast & Easy to Deploy!
tracker.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 // The code is based on:
16 // https://github.com/CnybTseng/JDE/blob/master/platforms/common/jdetracker.h
17 // Ths copyright of CnybTseng/JDE is as follows:
18 // MIT License
19 
20 #pragma once
21 
22 #include <map>
23 #include <vector>
24 
25 #include <opencv2/core/core.hpp>
26 #include <opencv2/highgui/highgui.hpp>
27 #include <opencv2/imgproc/imgproc.hpp>
28 #include "fastdeploy/fastdeploy_model.h"
29 #include "fastdeploy/vision/tracking/pptracking/trajectory.h"
30 
31 namespace fastdeploy {
32 namespace vision {
33 namespace tracking {
34 
35 typedef std::map<int, int> Match;
36 typedef std::map<int, int>::iterator MatchIterator;
37 
38 struct Track {
39  int id;
40  float score;
41  cv::Vec4f ltrb;
42 };
43 
44 class FASTDEPLOY_DECL JDETracker {
45  public:
46 
47  JDETracker();
48 
49  virtual bool update(const cv::Mat &dets,
50  const cv::Mat &emb,
51  std::vector<Track> *tracks);
52  virtual ~JDETracker() {}
53  private:
54 
55  cv::Mat motion_distance(const TrajectoryPtrPool &a, const TrajectoryPool &b);
56  void linear_assignment(const cv::Mat &cost,
57  float cost_limit,
58  Match *matches,
59  std::vector<int> *mismatch_row,
60  std::vector<int> *mismatch_col);
61  void remove_duplicate_trajectory(TrajectoryPool *a,
62  TrajectoryPool *b,
63  float iou_thresh = 0.15f);
64 
65  private:
66  int timestamp;
67  TrajectoryPool tracked_trajectories;
68  TrajectoryPool lost_trajectories;
69  TrajectoryPool removed_trajectories;
70  int max_lost_time;
71  float lambda;
72  float det_thresh;
73  int count = 0;
74 };
75 
76 } // namespace tracking
77 } // namespace vision
78 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16