[Model] Refactor PaddleDetection module (#575)

* Add namespace for functions

* Refactor PaddleDetection module

* finish all the single image test

* Update preprocessor.cc

* fix some litte detail

* add python api

* Update postprocessor.cc
This commit is contained in:
Jason
2022-11-15 10:43:23 +08:00
committed by GitHub
parent aa21272eaa
commit beaa0fd190
39 changed files with 1282 additions and 1438 deletions

View File

@@ -17,7 +17,7 @@
namespace fastdeploy {
namespace pipeline {
PPTinyPose::PPTinyPose(
fastdeploy::vision::detection::PPYOLOE* det_model,
fastdeploy::vision::detection::PicoDet* det_model,
fastdeploy::vision::keypointdetection::PPTinyPose* pptinypose_model)
: detector_(det_model), pptinypose_model_(pptinypose_model) {}