FastDeploy  latest
Fast & Easy to Deploy!
model.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 #pragma once
16 
17 #include <map>
18 #include "fastdeploy/vision/common/processors/transform.h"
19 #include "fastdeploy/fastdeploy_model.h"
20 #include "fastdeploy/vision/common/result.h"
21 #include "fastdeploy/vision/tracking/pptracking/tracker.h"
22 
23 namespace fastdeploy {
24 namespace vision {
25 namespace tracking {
26 struct TrailRecorder{
27  std::map<int, std::vector<std::array<int, 2>>> records;
28  void Add(int id, const std::array<int, 2>& record);
29 };
30 
31 inline void TrailRecorder::Add(int id, const std::array<int, 2>& record) {
32  auto iter = records.find(id);
33  if (iter != records.end()) {
34  auto trail = records[id];
35  trail.push_back(record);
36  records[id] = trail;
37  } else {
38  records[id] = {record};
39  }
40 }
41 
42 class FASTDEPLOY_DECL PPTracking: public FastDeployModel {
43  public:
52  PPTracking(const std::string& model_file,
53  const std::string& params_file,
54  const std::string& config_file,
55  const RuntimeOption& custom_option = RuntimeOption(),
56  const ModelFormat& model_format = ModelFormat::PADDLE);
57 
59  std::string ModelName() const override { return "pptracking"; }
60 
67  virtual bool Predict(cv::Mat* img, MOTResult* result);
72  void BindRecorder(TrailRecorder* recorder);
75  void UnbindRecorder();
76 
77  private:
78  bool BuildPreprocessPipelineFromConfig();
79 
80  bool Initialize();
81 
82  bool Preprocess(Mat* img, std::vector<FDTensor>* outputs);
83 
84  bool Postprocess(std::vector<FDTensor>& infer_result, MOTResult *result);
85 
86  std::vector<std::shared_ptr<Processor>> processors_;
87  std::string config_file_;
88  float draw_threshold_;
89  float conf_thresh_;
90  float tracked_thresh_;
91  float min_box_area_;
92  bool is_record_trail_ = false;
93  std::unique_ptr<JDETracker> jdeTracker_;
94  TrailRecorder *recorder_ = nullptr;
95 };
96 
97 } // namespace tracking
98 } // namespace vision
99 } // namespace fastdeploy
void Add(const FDTensor &x, const FDTensor &y, FDTensor *out)
Definition: elementwise.cc:30
ModelFormat
Definition: enum_variables.h:67
Model with paddlepaddle format.
Definition: enum_variables.h:69
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16