16 #include "fastdeploy/fastdeploy_model.h" 17 #include "fastdeploy/vision/common/processors/transform.h" 18 #include "fastdeploy/vision/common/result.h" 35 const std::string& params_file =
"",
41 virtual std::string
ModelName()
const {
return "yolov7end2end_trt"; }
50 float conf_threshold = 0.25);
53 void UseCudaPreprocessing(
int max_img_size = 3840 * 2160);
61 std::vector<float> padding_value;
77 std::map<std::string, std::array<float, 2>>* im_info);
80 std::map<std::string, std::array<float, 2>>* im_info);
82 bool Postprocess(std::vector<FDTensor>& infer_results,
84 const std::map<std::string, std::array<float, 2>>& im_info,
85 float conf_threshold);
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,
92 bool is_dynamic_input_;
94 uint8_t* input_img_cuda_buffer_host_ =
nullptr;
96 uint8_t* input_img_cuda_buffer_device_ =
nullptr;
98 float* input_tensor_cuda_buffer_device_ =
nullptr;
100 bool use_cuda_preprocessing_ =
false;
102 void* cuda_stream_ =
nullptr;
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'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