17 #include "fastdeploy/fastdeploy_model.h" 18 #include "fastdeploy/vision/detection/contrib/rknpu2/postprocessor.h" 19 #include "fastdeploy/vision/detection/contrib/rknpu2/preprocessor.h" 25 class FASTDEPLOY_DECL RKYOLO :
public FastDeployModel {
27 RKYOLO(
const std::string& model_file,
28 const RuntimeOption& custom_option = RuntimeOption(),
31 std::string ModelName()
const {
return "RKYOLO"; }
39 virtual bool Predict(
const cv::Mat& img, DetectionResult* result);
47 virtual bool BatchPredict(
const std::vector<cv::Mat>& imgs,
48 std::vector<DetectionResult>* results);
51 RKYOLOPreprocessor& GetPreprocessor() {
return preprocessor_; }
54 RKYOLOPostprocessor& GetPostprocessor() {
return postprocessor_; }
58 RKYOLOPreprocessor preprocessor_;
59 RKYOLOPostprocessor postprocessor_;
ModelFormat
Definition: enum_variables.h:67
Model with RKNN format.
Definition: enum_variables.h:71
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16