FastDeploy  latest
Fast & Easy to Deploy!
yolov7end2end_trt.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/fastdeploy_model.h"
17 #include "fastdeploy/vision/common/processors/transform.h"
18 #include "fastdeploy/vision/common/result.h"
19 
20 namespace fastdeploy {
21 namespace vision {
22 namespace detection {
25 class FASTDEPLOY_DECL YOLOv7End2EndTRT : public FastDeployModel {
26  public:
34  YOLOv7End2EndTRT(const std::string& model_file,
35  const std::string& params_file = "",
36  const RuntimeOption& custom_option = RuntimeOption(),
37  const ModelFormat& model_format = ModelFormat::ONNX);
38 
40 
41  virtual std::string ModelName() const { return "yolov7end2end_trt"; }
49  virtual bool Predict(cv::Mat* im, DetectionResult* result,
50  float conf_threshold = 0.25);
51 
52 
53  void UseCudaPreprocessing(int max_img_size = 3840 * 2160);
54 
58  std::vector<int> size;
59  // padding value, size should be the same as channels
60 
61  std::vector<float> padding_value;
62  // only pad to the minimum rectange which height and width is times of stride
63  bool is_mini_pad;
64  // while is_mini_pad = false and is_no_pad = true,
65  // will resize the image to the set size
66  bool is_no_pad;
67  // if is_scale_up is false, the input image only can be zoom out,
68  // the maximum resize scale cannot exceed 1.0
69  bool is_scale_up;
70  // padding stride, for is_mini_pad
71  int stride;
72 
73  private:
74  bool Initialize();
75 
76  bool Preprocess(Mat* mat, FDTensor* output,
77  std::map<std::string, std::array<float, 2>>* im_info);
78 
79  bool CudaPreprocess(Mat* mat, FDTensor* output,
80  std::map<std::string, std::array<float, 2>>* im_info);
81 
82  bool Postprocess(std::vector<FDTensor>& infer_results,
83  DetectionResult* result,
84  const std::map<std::string, std::array<float, 2>>& im_info,
85  float conf_threshold);
86 
87  void LetterBox(Mat* mat, const std::vector<int>& size,
88  const std::vector<float>& color, bool _auto,
89  bool scale_fill = false, bool scale_up = true,
90  int stride = 32);
91 
92  bool is_dynamic_input_;
93  // CUDA host buffer for input image
94  uint8_t* input_img_cuda_buffer_host_ = nullptr;
95  // CUDA device buffer for input image
96  uint8_t* input_img_cuda_buffer_device_ = nullptr;
97  // CUDA device buffer for TRT input tensor
98  float* input_tensor_cuda_buffer_device_ = nullptr;
99  // Whether to use CUDA preprocessing
100  bool use_cuda_preprocessing_ = false;
101  // CUDA stream
102  void* cuda_stream_ = nullptr;
103 };
104 } // namespace detection
105 } // namespace vision
106 } // namespace fastdeploy
Option object used when create a new Runtime object.
Definition: runtime_option.h:40
Base model object for all the vision models.
Definition: fastdeploy_model.h:21
virtual std::string ModelName() const
Get model&#39;s name.
Definition: yolov7end2end_trt.h:41
ModelFormat
Definition: enum_variables.h:67
FDTensor object used to represend data matrix.
Definition: fd_tensor.h:31
Detection result structure for all the object detection models and instance segmentation models...
Definition: result.h:106
YOLOv7End2EndTRT model object used when to load a YOLOv7End2EndTRT model exported by YOLOv7...
Definition: yolov7end2end_trt.h:25
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
Model with ONNX format.
Definition: enum_variables.h:70
std::vector< int > size
Argument for image preprocessing step, tuple of (width, height), decide the target size after resize...
Definition: yolov7end2end_trt.h:58
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16