17 #include "fastdeploy/fastdeploy_model.h" 18 #include "fastdeploy/vision/common/processors/transform.h" 19 #include "fastdeploy/vision/common/result.h" 35 YOLOR(
const std::string& model_file,
const std::string& params_file =
"",
39 virtual std::string
ModelName()
const {
return "YOLOR"; }
49 float conf_threshold = 0.25,
50 float nms_iou_threshold = 0.5);
58 std::vector<float> padding_value;
76 std::map<std::string, std::array<float, 2>>* im_info);
79 const std::map<std::string, std::array<float, 2>>& im_info,
80 float conf_threshold,
float nms_iou_threshold);
82 void LetterBox(
Mat* mat,
const std::vector<int>& size,
83 const std::vector<float>& color,
bool _auto,
84 bool scale_fill =
false,
bool scale_up =
true,
92 bool is_dynamic_input_;
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
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
FDMat is a structure for replace cv::Mat.
Definition: mat.h:34
YOLOR model object used when to load a YOLOR model exported by YOLOR.
Definition: yolor.h:26
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: yolor.h:55
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16
virtual std::string ModelName() const
Get model's name.
Definition: yolor.h:39