FastDeploy  latest
Fast & Easy to Deploy!
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
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 #include "fastdeploy/vision/detection/ppdet/base.h"
17 #include "fastdeploy/vision/detection/ppdet/multiclass_nms.h"
18 
19 namespace fastdeploy {
20 namespace vision {
21 namespace detection {
22 
23 class FASTDEPLOY_DECL PicoDet : public PPDetBase {
24  public:
33  PicoDet(const std::string& model_file, const std::string& params_file,
34  const std::string& config_file,
35  const RuntimeOption& custom_option = RuntimeOption(),
36  const ModelFormat& model_format = ModelFormat::PADDLE)
37  : PPDetBase(model_file, params_file, config_file, custom_option,
38  model_format) {
39  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER,
41  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
42  valid_rknpu_backends = {Backend::RKNPU2};
43  valid_kunlunxin_backends = {Backend::LITE};
44  valid_ascend_backends = {Backend::LITE};
45  valid_sophgonpu_backends = {Backend::SOPHGOTPU};
46  initialized = Initialize();
47  }
48 
49  virtual std::string ModelName() const { return "PicoDet"; }
50 };
51 
52 class FASTDEPLOY_DECL SOLOv2 : public PPDetBase {
53  public:
62  SOLOv2(const std::string& model_file, const std::string& params_file,
63  const std::string& config_file,
64  const RuntimeOption& custom_option = RuntimeOption(),
65  const ModelFormat& model_format = ModelFormat::PADDLE)
66  : PPDetBase(model_file, params_file, config_file, custom_option,
67  model_format) {
68  valid_cpu_backends = { Backend::PDINFER};
69  valid_gpu_backends = {Backend::PDINFER, Backend::TRT};
70  initialized = Initialize();
71  }
72 
73  virtual std::string ModelName() const { return "SOLOv2"; }
74 };
75 
76 class FASTDEPLOY_DECL PPYOLOE : public PPDetBase {
77  public:
86  PPYOLOE(const std::string& model_file, const std::string& params_file,
87  const std::string& config_file,
88  const RuntimeOption& custom_option = RuntimeOption(),
89  const ModelFormat& model_format = ModelFormat::PADDLE)
90  : PPDetBase(model_file, params_file, config_file, custom_option,
91  model_format) {
92  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER,
94  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
95  valid_timvx_backends = {Backend::LITE};
96  valid_kunlunxin_backends = {Backend::LITE};
97  valid_rknpu_backends = {Backend::RKNPU2};
98  valid_ascend_backends = {Backend::LITE};
99  valid_sophgonpu_backends = {Backend::SOPHGOTPU};
100  initialized = Initialize();
101  }
102 
103  virtual std::string ModelName() const { return "PPYOLOE"; }
104 };
105 
106 class FASTDEPLOY_DECL PPYOLO : public PPDetBase {
107  public:
116  PPYOLO(const std::string& model_file, const std::string& params_file,
117  const std::string& config_file,
118  const RuntimeOption& custom_option = RuntimeOption(),
119  const ModelFormat& model_format = ModelFormat::PADDLE)
120  : PPDetBase(model_file, params_file, config_file, custom_option,
121  model_format) {
122  valid_cpu_backends = {Backend::PDINFER, Backend::LITE};
123  valid_gpu_backends = {Backend::PDINFER};
124  valid_kunlunxin_backends = {Backend::LITE};
125  valid_ascend_backends = {Backend::LITE};
126  initialized = Initialize();
127  }
128 
129  virtual std::string ModelName() const { return "PaddleDetection/PP-YOLO"; }
130 };
131 
132 class FASTDEPLOY_DECL YOLOv3 : public PPDetBase {
133  public:
134  YOLOv3(const std::string& model_file, const std::string& params_file,
135  const std::string& config_file,
136  const RuntimeOption& custom_option = RuntimeOption(),
137  const ModelFormat& model_format = ModelFormat::PADDLE)
138  : PPDetBase(model_file, params_file, config_file, custom_option,
139  model_format) {
140  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER,
141  Backend::LITE};
142  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
143  valid_kunlunxin_backends = {Backend::LITE};
144  valid_ascend_backends = {Backend::LITE};
145  initialized = Initialize();
146  }
147 
148  virtual std::string ModelName() const { return "PaddleDetection/YOLOv3"; }
149 };
150 
151 class FASTDEPLOY_DECL PaddleYOLOX : public PPDetBase {
152  public:
153  PaddleYOLOX(const std::string& model_file, const std::string& params_file,
154  const std::string& config_file,
155  const RuntimeOption& custom_option = RuntimeOption(),
156  const ModelFormat& model_format = ModelFormat::PADDLE)
157  : PPDetBase(model_file, params_file, config_file, custom_option,
158  model_format) {
159  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER,
160  Backend::LITE};
161  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
162  valid_kunlunxin_backends = {Backend::LITE};
163  valid_ascend_backends = {Backend::LITE};
164  initialized = Initialize();
165  }
166 
167  virtual std::string ModelName() const { return "PaddleDetection/YOLOX"; }
168 };
169 
170 class FASTDEPLOY_DECL FasterRCNN : public PPDetBase {
171  public:
172  FasterRCNN(const std::string& model_file, const std::string& params_file,
173  const std::string& config_file,
174  const RuntimeOption& custom_option = RuntimeOption(),
175  const ModelFormat& model_format = ModelFormat::PADDLE)
176  : PPDetBase(model_file, params_file, config_file, custom_option,
177  model_format) {
178  valid_cpu_backends = {Backend::PDINFER, Backend::LITE};
179  valid_gpu_backends = {Backend::PDINFER};
180  valid_kunlunxin_backends = {Backend::LITE};
181  initialized = Initialize();
182  }
183 
184  virtual std::string ModelName() const { return "PaddleDetection/FasterRCNN"; }
185 };
186 
187 class FASTDEPLOY_DECL MaskRCNN : public PPDetBase {
188  public:
189  MaskRCNN(const std::string& model_file, const std::string& params_file,
190  const std::string& config_file,
191  const RuntimeOption& custom_option = RuntimeOption(),
192  const ModelFormat& model_format = ModelFormat::PADDLE)
193  : PPDetBase(model_file, params_file, config_file, custom_option,
194  model_format) {
195  valid_cpu_backends = {Backend::PDINFER, Backend::LITE};
196  valid_gpu_backends = {Backend::PDINFER};
197  valid_kunlunxin_backends = {Backend::LITE};
198  initialized = Initialize();
199  }
200 
201  virtual std::string ModelName() const { return "PaddleDetection/MaskRCNN"; }
202 };
203 
204 class FASTDEPLOY_DECL SSD : public PPDetBase {
205  public:
206  SSD(const std::string& model_file, const std::string& params_file,
207  const std::string& config_file,
208  const RuntimeOption& custom_option = RuntimeOption(),
209  const ModelFormat& model_format = ModelFormat::PADDLE)
210  : PPDetBase(model_file, params_file, config_file, custom_option,
211  model_format) {
212  valid_cpu_backends = {Backend::PDINFER, Backend::LITE};
213  valid_gpu_backends = {Backend::PDINFER};
214  valid_kunlunxin_backends = {Backend::LITE};
215  valid_ascend_backends = {Backend::LITE};
216  initialized = Initialize();
217  }
218 
219  virtual std::string ModelName() const { return "PaddleDetection/SSD"; }
220 };
221 
222 class FASTDEPLOY_DECL PaddleYOLOv5 : public PPDetBase {
223  public:
224  PaddleYOLOv5(const std::string& model_file, const std::string& params_file,
225  const std::string& config_file,
226  const RuntimeOption& custom_option = RuntimeOption(),
227  const ModelFormat& model_format = ModelFormat::PADDLE)
228  : PPDetBase(model_file, params_file, config_file, custom_option,
229  model_format) {
230  valid_cpu_backends = {Backend::ORT, Backend::PDINFER};
231  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
232  valid_kunlunxin_backends = {Backend::LITE};
233  initialized = Initialize();
234  }
235 
236  virtual std::string ModelName() const { return "PaddleDetection/YOLOv5"; }
237 };
238 
239 class FASTDEPLOY_DECL PaddleYOLOv6 : public PPDetBase {
240  public:
241  PaddleYOLOv6(const std::string& model_file, const std::string& params_file,
242  const std::string& config_file,
243  const RuntimeOption& custom_option = RuntimeOption(),
244  const ModelFormat& model_format = ModelFormat::PADDLE)
245  : PPDetBase(model_file, params_file, config_file, custom_option,
246  model_format) {
247  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER};
248  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
249  valid_kunlunxin_backends = {Backend::LITE};
250  initialized = Initialize();
251  }
252 
253  virtual std::string ModelName() const { return "PaddleDetection/YOLOv6"; }
254 };
255 
256 class FASTDEPLOY_DECL PaddleYOLOv7 : public PPDetBase {
257  public:
258  PaddleYOLOv7(const std::string& model_file, const std::string& params_file,
259  const std::string& config_file,
260  const RuntimeOption& custom_option = RuntimeOption(),
261  const ModelFormat& model_format = ModelFormat::PADDLE)
262  : PPDetBase(model_file, params_file, config_file, custom_option,
263  model_format) {
264  valid_cpu_backends = {Backend::ORT, Backend::PDINFER};
265  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
266  valid_kunlunxin_backends = {Backend::LITE};
267  initialized = Initialize();
268  }
269 
270  virtual std::string ModelName() const { return "PaddleDetection/YOLOv7"; }
271 };
272 
273 class FASTDEPLOY_DECL PaddleYOLOv8 : public PPDetBase {
274  public:
275  PaddleYOLOv8(const std::string& model_file, const std::string& params_file,
276  const std::string& config_file,
277  const RuntimeOption& custom_option = RuntimeOption(),
278  const ModelFormat& model_format = ModelFormat::PADDLE)
279  : PPDetBase(model_file, params_file, config_file, custom_option,
280  model_format) {
281  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER,
282  Backend::LITE};
283  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
284  valid_kunlunxin_backends = {Backend::LITE};
285  valid_rknpu_backends = {Backend::RKNPU2};
286  valid_ascend_backends = {Backend::LITE};
287  valid_sophgonpu_backends = {Backend::SOPHGOTPU};
288  initialized = Initialize();
289  }
290 
291  virtual std::string ModelName() const { return "PaddleDetection/YOLOv8"; }
292 };
293 
294 class FASTDEPLOY_DECL RTMDet : public PPDetBase {
295  public:
296  RTMDet(const std::string& model_file, const std::string& params_file,
297  const std::string& config_file,
298  const RuntimeOption& custom_option = RuntimeOption(),
299  const ModelFormat& model_format = ModelFormat::PADDLE)
300  : PPDetBase(model_file, params_file, config_file, custom_option,
301  model_format) {
302  valid_cpu_backends = {Backend::OPENVINO, Backend::ORT, Backend::PDINFER};
303  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
304  valid_kunlunxin_backends = {Backend::LITE};
305  initialized = Initialize();
306  }
307 
308  virtual std::string ModelName() const { return "PaddleDetection/RTMDet"; }
309 };
310 
311 class FASTDEPLOY_DECL CascadeRCNN : public PPDetBase {
312  public:
313  CascadeRCNN(const std::string& model_file, const std::string& params_file,
314  const std::string& config_file,
315  const RuntimeOption& custom_option = RuntimeOption(),
316  const ModelFormat& model_format = ModelFormat::PADDLE)
317  : PPDetBase(model_file, params_file, config_file, custom_option,
318  model_format) {
319  valid_cpu_backends = {Backend::PDINFER};
320  valid_gpu_backends = {Backend::PDINFER};
321  initialized = Initialize();
322  }
323 
324  virtual std::string ModelName() const {
325  return "PaddleDetection/CascadeRCNN";
326  }
327 };
328 
329 class FASTDEPLOY_DECL PSSDet : public PPDetBase {
330  public:
331  PSSDet(const std::string& model_file, const std::string& params_file,
332  const std::string& config_file,
333  const RuntimeOption& custom_option = RuntimeOption(),
334  const ModelFormat& model_format = ModelFormat::PADDLE)
335  : PPDetBase(model_file, params_file, config_file, custom_option,
336  model_format) {
337  valid_cpu_backends = {Backend::PDINFER};
338  valid_gpu_backends = {Backend::PDINFER};
339  initialized = Initialize();
340  }
341 
342  virtual std::string ModelName() const { return "PaddleDetection/PSSDet"; }
343 };
344 
345 class FASTDEPLOY_DECL RetinaNet : public PPDetBase {
346  public:
347  RetinaNet(const std::string& model_file, const std::string& params_file,
348  const std::string& config_file,
349  const RuntimeOption& custom_option = RuntimeOption(),
350  const ModelFormat& model_format = ModelFormat::PADDLE)
351  : PPDetBase(model_file, params_file, config_file, custom_option,
352  model_format) {
353  valid_cpu_backends = {Backend::PDINFER};
354  valid_gpu_backends = {Backend::PDINFER};
355  initialized = Initialize();
356  }
357 
358  virtual std::string ModelName() const { return "PaddleDetection/RetinaNet"; }
359 };
360 
361 class FASTDEPLOY_DECL PPYOLOESOD : public PPDetBase {
362  public:
363  PPYOLOESOD(const std::string& model_file, const std::string& params_file,
364  const std::string& config_file,
365  const RuntimeOption& custom_option = RuntimeOption(),
366  const ModelFormat& model_format = ModelFormat::PADDLE)
367  : PPDetBase(model_file, params_file, config_file, custom_option,
368  model_format) {
369  valid_cpu_backends = {Backend::ORT, Backend::PDINFER};
370  valid_gpu_backends = {Backend::ORT, Backend::PDINFER, Backend::TRT};
371  initialized = Initialize();
372  }
373 
374  virtual std::string ModelName() const { return "PaddleDetection/PPYOLOESOD"; }
375 };
376 
377 class FASTDEPLOY_DECL FCOS : public PPDetBase {
378  public:
379  FCOS(const std::string& model_file, const std::string& params_file,
380  const std::string& config_file,
381  const RuntimeOption& custom_option = RuntimeOption(),
382  const ModelFormat& model_format = ModelFormat::PADDLE)
383  : PPDetBase(model_file, params_file, config_file, custom_option,
384  model_format) {
385  valid_cpu_backends = {Backend::PDINFER};
386  valid_gpu_backends = {Backend::ORT, Backend::PDINFER};
387  initialized = Initialize();
388  }
389 
390  virtual std::string ModelName() const { return "PaddleDetection/FCOS"; }
391 };
392 
393 class FASTDEPLOY_DECL TTFNet : public PPDetBase {
394  public:
395  TTFNet(const std::string& model_file, const std::string& params_file,
396  const std::string& config_file,
397  const RuntimeOption& custom_option = RuntimeOption(),
398  const ModelFormat& model_format = ModelFormat::PADDLE)
399  : PPDetBase(model_file, params_file, config_file, custom_option,
400  model_format) {
401  valid_cpu_backends = {Backend::PDINFER};
402  valid_gpu_backends = {Backend::PDINFER};
403  initialized = Initialize();
404  }
405 
406  virtual std::string ModelName() const { return "PaddleDetection/TTFNet"; }
407 };
408 
409 class FASTDEPLOY_DECL TOOD : public PPDetBase {
410  public:
411  TOOD(const std::string& model_file, const std::string& params_file,
412  const std::string& config_file,
413  const RuntimeOption& custom_option = RuntimeOption(),
414  const ModelFormat& model_format = ModelFormat::PADDLE)
415  : PPDetBase(model_file, params_file, config_file, custom_option,
416  model_format) {
417  valid_cpu_backends = {Backend::PDINFER};
418  valid_gpu_backends = {Backend::PDINFER};
419  initialized = Initialize();
420  }
421 
422  virtual std::string ModelName() const { return "PaddleDetection/TOOD"; }
423 };
424 
425 class FASTDEPLOY_DECL GFL : public PPDetBase {
426  public:
427  GFL(const std::string& model_file, const std::string& params_file,
428  const std::string& config_file,
429  const RuntimeOption& custom_option = RuntimeOption(),
430  const ModelFormat& model_format = ModelFormat::PADDLE)
431  : PPDetBase(model_file, params_file, config_file, custom_option,
432  model_format) {
433  valid_cpu_backends = {Backend::ORT, Backend::PDINFER};
434  valid_gpu_backends = {Backend::ORT, Backend::PDINFER};
435  initialized = Initialize();
436  }
437 
438  virtual std::string ModelName() const { return "PaddleDetection/GFL"; }
439 };
440 
441 } // namespace detection
442 } // namespace vision
443 } // namespace fastdeploy
Paddle Inference, support Paddle format model, CPU / Nvidia GPU.
Definition: enum_variables.h:35
ModelFormat
Definition: enum_variables.h:67
TensorRT, support Paddle/ONNX format model, Nvidia GPU only.
Definition: enum_variables.h:34
RKNPU2, support RKNN format model, Rockchip NPU only.
Definition: enum_variables.h:39
Paddle Lite, support Paddle format model, ARM CPU only.
Definition: enum_variables.h:38
Intel OpenVINO, support Paddle/ONNX format, CPU only.
Definition: enum_variables.h:37
SOPHGOTPU, support SOPHGO format model, Sophgo TPU only.
Definition: enum_variables.h:40
Model with paddlepaddle format.
Definition: enum_variables.h:69
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16