FastDeploy  latest
Fast & Easy to Deploy!
trajectory.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/trajectory.h
17 // Ths copyright of CnybTseng/JDE is as follows:
18 // MIT License
19 
20 #pragma once
21 
22 #include <vector>
23 #include "fastdeploy/fastdeploy_model.h"
24 #include <opencv2/core/core.hpp>
25 #include <opencv2/highgui/highgui.hpp>
26 #include <opencv2/imgproc/imgproc.hpp>
27 #include "opencv2/video/tracking.hpp"
28 
29 namespace fastdeploy {
30 namespace vision {
31 namespace tracking {
32 
33 typedef enum { New = 0, Tracked = 1, Lost = 2, Removed = 3 } TrajectoryState;
34 
35 class Trajectory;
36 typedef std::vector<Trajectory> TrajectoryPool;
37 typedef std::vector<Trajectory>::iterator TrajectoryPoolIterator;
38 typedef std::vector<Trajectory *> TrajectoryPtrPool;
39 typedef std::vector<Trajectory *>::iterator TrajectoryPtrPoolIterator;
40 
41 class FASTDEPLOY_DECL TKalmanFilter : public cv::KalmanFilter {
42  public:
43  TKalmanFilter(void);
44  virtual ~TKalmanFilter(void) {}
45  virtual void init(const cv::Mat &measurement);
46  virtual const cv::Mat &predict();
47  virtual const cv::Mat &correct(const cv::Mat &measurement);
48  virtual void project(cv::Mat *mean, cv::Mat *covariance) const;
49 
50  private:
51  float std_weight_position;
52  float std_weight_velocity;
53 };
54 
55 inline TKalmanFilter::TKalmanFilter(void) : cv::KalmanFilter(8, 4) {
56  cv::KalmanFilter::transitionMatrix = cv::Mat::eye(8, 8, CV_32F);
57  for (int i = 0; i < 4; ++i)
58  cv::KalmanFilter::transitionMatrix.at<float>(i, i + 4) = 1;
59  cv::KalmanFilter::measurementMatrix = cv::Mat::eye(4, 8, CV_32F);
60  std_weight_position = 1 / 20.f;
61  std_weight_velocity = 1 / 160.f;
62 }
63 
64 class FASTDEPLOY_DECL Trajectory : public TKalmanFilter {
65  public:
66  Trajectory();
67  Trajectory(const cv::Vec4f &ltrb, float score, const cv::Mat &embedding);
68  Trajectory(const Trajectory &other);
69  Trajectory &operator=(const Trajectory &rhs);
70  virtual ~Trajectory(void) {}
71 
72  int next_id(int &nt);
73  virtual const cv::Mat &predict(void);
74  virtual void update(Trajectory *traj,
75  int timestamp,
76  bool update_embedding = true);
77  virtual void activate(int &cnt, int timestamp);
78  virtual void reactivate(Trajectory *traj, int &cnt,
79  int timestamp, bool newid = false);
80  virtual void mark_lost(void);
81  virtual void mark_removed(void);
82 
83  friend TrajectoryPool operator+(const TrajectoryPool &a,
84  const TrajectoryPool &b);
85  friend TrajectoryPool operator+(const TrajectoryPool &a,
86  const TrajectoryPtrPool &b);
87  friend TrajectoryPool &operator+=(TrajectoryPool &a, // NOLINT
88  const TrajectoryPtrPool &b);
89  friend TrajectoryPool operator-(const TrajectoryPool &a,
90  const TrajectoryPool &b);
91  friend TrajectoryPool &operator-=(TrajectoryPool &a, // NOLINT
92  const TrajectoryPool &b);
93  friend TrajectoryPtrPool operator+(const TrajectoryPtrPool &a,
94  const TrajectoryPtrPool &b);
95  friend TrajectoryPtrPool operator+(const TrajectoryPtrPool &a,
96  TrajectoryPool *b);
97  friend TrajectoryPtrPool operator-(const TrajectoryPtrPool &a,
98  const TrajectoryPtrPool &b);
99 
100  friend cv::Mat embedding_distance(const TrajectoryPool &a,
101  const TrajectoryPool &b);
102  friend cv::Mat embedding_distance(const TrajectoryPtrPool &a,
103  const TrajectoryPtrPool &b);
104  friend cv::Mat embedding_distance(const TrajectoryPtrPool &a,
105  const TrajectoryPool &b);
106 
107  friend cv::Mat mahalanobis_distance(const TrajectoryPool &a,
108  const TrajectoryPool &b);
109  friend cv::Mat mahalanobis_distance(const TrajectoryPtrPool &a,
110  const TrajectoryPtrPool &b);
111  friend cv::Mat mahalanobis_distance(const TrajectoryPtrPool &a,
112  const TrajectoryPool &b);
113 
114  friend cv::Mat iou_distance(const TrajectoryPool &a, const TrajectoryPool &b);
115  friend cv::Mat iou_distance(const TrajectoryPtrPool &a,
116  const TrajectoryPtrPool &b);
117  friend cv::Mat iou_distance(const TrajectoryPtrPool &a,
118  const TrajectoryPool &b);
119 
120  private:
121  void update_embedding(const cv::Mat &embedding);
122 
123  public:
124  TrajectoryState state;
125  cv::Vec4f ltrb;
126  cv::Mat smooth_embedding;
127  int id;
128  bool is_activated;
129  int timestamp;
130  int starttime;
131  float score;
132 
133  private:
134 // int count=0;
135  cv::Vec4f xyah;
136  cv::Mat current_embedding;
137  float eta;
138  int length;
139 };
140 
141 inline cv::Vec4f ltrb2xyah(const cv::Vec4f &ltrb) {
142  cv::Vec4f xyah;
143  xyah[0] = (ltrb[0] + ltrb[2]) * 0.5f;
144  xyah[1] = (ltrb[1] + ltrb[3]) * 0.5f;
145  xyah[3] = ltrb[3] - ltrb[1];
146  xyah[2] = (ltrb[2] - ltrb[0]) / xyah[3];
147  return xyah;
148 }
149 
150 inline Trajectory::Trajectory()
151  : state(New),
152  ltrb(cv::Vec4f()),
153  smooth_embedding(cv::Mat()),
154  id(0),
155  is_activated(false),
156  timestamp(0),
157  starttime(0),
158  score(0),
159  eta(0.9),
160  length(0) {}
161 
162 inline Trajectory::Trajectory(const cv::Vec4f &ltrb_,
163  float score_,
164  const cv::Mat &embedding)
165  : state(New),
166  ltrb(ltrb_),
167  smooth_embedding(cv::Mat()),
168  id(0),
169  is_activated(false),
170  timestamp(0),
171  starttime(0),
172  score(score_),
173  eta(0.9),
174  length(0) {
175  xyah = ltrb2xyah(ltrb);
176  update_embedding(embedding);
177 }
178 
179 inline Trajectory::Trajectory(const Trajectory &other)
180  : state(other.state),
181  ltrb(other.ltrb),
182  id(other.id),
183  is_activated(other.is_activated),
184  timestamp(other.timestamp),
185  starttime(other.starttime),
186  xyah(other.xyah),
187  score(other.score),
188  eta(other.eta),
189  length(other.length) {
190  other.smooth_embedding.copyTo(smooth_embedding);
191  other.current_embedding.copyTo(current_embedding);
192  // copy state in KalmanFilter
193 
194  other.statePre.copyTo(cv::KalmanFilter::statePre);
195  other.statePost.copyTo(cv::KalmanFilter::statePost);
196  other.errorCovPre.copyTo(cv::KalmanFilter::errorCovPre);
197  other.errorCovPost.copyTo(cv::KalmanFilter::errorCovPost);
198 }
199 
200 inline Trajectory &Trajectory::operator=(const Trajectory &rhs) {
201  this->state = rhs.state;
202  this->ltrb = rhs.ltrb;
203  rhs.smooth_embedding.copyTo(this->smooth_embedding);
204  this->id = rhs.id;
205  this->is_activated = rhs.is_activated;
206  this->timestamp = rhs.timestamp;
207  this->starttime = rhs.starttime;
208  this->xyah = rhs.xyah;
209  this->score = rhs.score;
210  rhs.current_embedding.copyTo(this->current_embedding);
211  this->eta = rhs.eta;
212  this->length = rhs.length;
213 
214  // copy state in KalmanFilter
215 
216  rhs.statePre.copyTo(cv::KalmanFilter::statePre);
217  rhs.statePost.copyTo(cv::KalmanFilter::statePost);
218  rhs.errorCovPre.copyTo(cv::KalmanFilter::errorCovPre);
219  rhs.errorCovPost.copyTo(cv::KalmanFilter::errorCovPost);
220 
221  return *this;
222 }
223 
224 inline int Trajectory::next_id(int &cnt) {
225  ++cnt;
226  return cnt;
227 }
228 
229 inline void Trajectory::mark_lost(void) { state = Lost; }
230 
231 inline void Trajectory::mark_removed(void) { state = Removed; }
232 
233 } // namespace tracking
234 } // namespace vision
235 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16