forked from PaddlePaddle/FastDeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Model] Add picodet for RV1126 and A311D (PaddlePaddle#1549)
* add infer for picodet * update code * update lite lib --------- Co-authored-by: DefTruth <[email protected]>
- Loading branch information
1 parent
cc4bbf2
commit e2f5a9c
Showing
16 changed files
with
209 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
English | [简体中文](README_CN.md) | ||
# Deploy PP-YOLOE Quantification Model on A311D | ||
Now FastDeploy supports the deployment of PP-YOLOE quantification model to A311D on Paddle Lite. | ||
Now FastDeploy supports the deployment of PP-YOLOE and PicoDet quantification model to A311D on Paddle Lite. | ||
|
||
For model quantification and download, refer to [Model Quantification](../quantize/README.md) | ||
|
||
|
||
## Detailed Deployment Tutorials | ||
|
||
Only C++ deployment is supported on A311D | ||
Only C++ deployment is supported on A311D | ||
|
||
- [C++ deployment](cpp) |
2 changes: 1 addition & 1 deletion
2
examples/vision/detection/paddledetection/a311d/README_CN.md
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
examples/vision/detection/paddledetection/a311d/cpp/infer_picodet.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include "fastdeploy/vision.h" | ||
#ifdef WIN32 | ||
const char sep = '\\'; | ||
#else | ||
const char sep = '/'; | ||
#endif | ||
|
||
void InitAndInfer(const std::string& model_dir, const std::string& image_file) { | ||
auto model_file = model_dir + sep + "model.pdmodel"; | ||
auto params_file = model_dir + sep + "model.pdiparams"; | ||
auto config_file = model_dir + sep + "infer_cfg.yml"; | ||
auto subgraph_file = model_dir + sep + "subgraph.txt"; | ||
fastdeploy::vision::EnableFlyCV(); | ||
fastdeploy::RuntimeOption option; | ||
option.UseTimVX(); | ||
option.SetLiteSubgraphPartitionPath(subgraph_file); | ||
|
||
auto model = fastdeploy::vision::detection::PicoDet(model_file, params_file, | ||
config_file, option); | ||
assert(model.Initialized()); | ||
|
||
auto im = cv::imread(image_file); | ||
|
||
fastdeploy::vision::DetectionResult res; | ||
if (!model.Predict(im, &res)) { | ||
std::cerr << "Failed to predict." << std::endl; | ||
return; | ||
} | ||
|
||
std::cout << res.Str() << std::endl; | ||
|
||
auto vis_im = fastdeploy::vision::VisDetection(im, res, 0.3); | ||
cv::imwrite("vis_result.jpg", vis_im); | ||
std::cout << "Visualized result saved in ./vis_result.jpg" << std::endl; | ||
} | ||
|
||
int main(int argc, char* argv[]) { | ||
if (argc < 3) { | ||
std::cout << "Usage: picodet_infer_demo path/to/quant_model " | ||
"path/to/image " | ||
"e.g ./picodet_infer_demo ./picodet_ptq ./test.jpeg" | ||
<< std::endl; | ||
return -1; | ||
} | ||
|
||
std::string model_dir = argv[1]; | ||
std::string test_image = argv[2]; | ||
InitAndInfer(model_dir, test_image); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
examples/vision/detection/paddledetection/rv1126/README_CN.md
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.