Skip to content

Commit 51be3fe

Browse files
thunder95DefTruth
andauthoredApr 21, 2023
[Hackthon_4th 177] Support PP-YOLOE-R with BM1684 (#1809)
* first draft * add robx iou * add benchmark for ppyoloe_r * remove trash code * fix bugs * add pybind nms rotated option * add missing head file * fix bug * fix bug2 * fix shape bug --------- Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
1 parent f3d4478 commit 51be3fe

31 files changed

+1389
-6
lines changed
 

‎benchmark/cpp/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ add_executable(benchmark_ppmatting ${PROJECT_SOURCE_DIR}/benchmark_ppmatting.cc)
2222
add_executable(benchmark_ppocr_det ${PROJECT_SOURCE_DIR}/benchmark_ppocr_det.cc)
2323
add_executable(benchmark_ppocr_cls ${PROJECT_SOURCE_DIR}/benchmark_ppocr_cls.cc)
2424
add_executable(benchmark_ppocr_rec ${PROJECT_SOURCE_DIR}/benchmark_ppocr_rec.cc)
25+
add_executable(benchmark_ppyoloe_r ${PROJECT_SOURCE_DIR}/benchmark_ppyoloe_r.cc)
26+
add_executable(benchmark_ppyoloe_r_sophgo ${PROJECT_SOURCE_DIR}/benchmark_ppyoloe_r_sophgo.cc)
2527
add_executable(benchmark_ppyolo ${PROJECT_SOURCE_DIR}/benchmark_ppyolo.cc)
2628
add_executable(benchmark_yolov3 ${PROJECT_SOURCE_DIR}/benchmark_yolov3.cc)
2729
add_executable(benchmark_fasterrcnn ${PROJECT_SOURCE_DIR}/benchmark_fasterrcnn.cc)
@@ -44,6 +46,8 @@ if(UNIX AND (NOT APPLE) AND (NOT ANDROID))
4446
target_link_libraries(benchmark_ppyolov8 ${FASTDEPLOY_LIBS} gflags pthread)
4547
target_link_libraries(benchmark_ppyolox ${FASTDEPLOY_LIBS} gflags pthread)
4648
target_link_libraries(benchmark_ppyoloe ${FASTDEPLOY_LIBS} gflags pthread)
49+
target_link_libraries(benchmark_ppyoloe_r ${FASTDEPLOY_LIBS} gflags pthread)
50+
target_link_libraries(benchmark_ppyoloe_r_sophgo ${FASTDEPLOY_LIBS} gflags pthread)
4751
target_link_libraries(benchmark_picodet ${FASTDEPLOY_LIBS} gflags pthread)
4852
target_link_libraries(benchmark_ppcls ${FASTDEPLOY_LIBS} gflags pthread)
4953
target_link_libraries(benchmark_ppseg ${FASTDEPLOY_LIBS} gflags pthread)
@@ -72,6 +76,8 @@ else()
7276
target_link_libraries(benchmark_ppyolov8 ${FASTDEPLOY_LIBS} gflags)
7377
target_link_libraries(benchmark_ppyolox ${FASTDEPLOY_LIBS} gflags)
7478
target_link_libraries(benchmark_ppyoloe ${FASTDEPLOY_LIBS} gflags)
79+
target_link_libraries(benchmark_ppyoloe_r ${FASTDEPLOY_LIBS} gflags)
80+
target_link_libraries(benchmark_ppyoloe_r_sophgo ${FASTDEPLOY_LIBS} gflags)
7581
target_link_libraries(benchmark_picodet ${FASTDEPLOY_LIBS} gflags)
7682
target_link_libraries(benchmark_ppcls ${FASTDEPLOY_LIBS} gflags)
7783
target_link_libraries(benchmark_ppseg ${FASTDEPLOY_LIBS} gflags)

‎benchmark/cpp/benchmark_ppyoloe_r.cc

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#include <fstream>
16+
17+
#include "flags.h"
18+
#include "macros.h"
19+
#include "option.h"
20+
21+
namespace vision = fastdeploy::vision;
22+
namespace benchmark = fastdeploy::benchmark;
23+
24+
DEFINE_bool(no_nms, false, "Whether the model contains nms.");
25+
26+
int main(int argc, char* argv[]) {
27+
#if defined(ENABLE_BENCHMARK) && defined(ENABLE_VISION)
28+
// Initialization
29+
auto option = fastdeploy::RuntimeOption();
30+
if (!CreateRuntimeOption(&option, argc, argv, true)) {
31+
return -1;
32+
}
33+
auto im = cv::imread(FLAGS_image);
34+
std::unordered_map<std::string, std::string> config_info;
35+
benchmark::ResultManager::LoadBenchmarkConfig(FLAGS_config_path,
36+
&config_info);
37+
std::string model_name, params_name, config_name;
38+
auto model_format = fastdeploy::ModelFormat::PADDLE;
39+
if (!UpdateModelResourceName(&model_name, &params_name, &config_name,
40+
&model_format, config_info)) {
41+
return -1;
42+
}
43+
auto model_file = FLAGS_model + sep + model_name;
44+
auto params_file = FLAGS_model + sep + params_name;
45+
auto config_file = FLAGS_model + sep + config_name;
46+
47+
auto model_ppyoloe_r = vision::detection::PPYOLOER(
48+
model_file, params_file, config_file, option, model_format);
49+
50+
vision::DetectionResult res;
51+
52+
// Run profiling
53+
BENCHMARK_MODEL(model_ppyoloe_r, model_ppyoloe_r.Predict(im, &res))
54+
55+
auto vis_im = vision::VisDetection(im, res);
56+
cv::imwrite("vis_result.jpg", vis_im);
57+
std::cout << "Visualized result saved in ./vis_result.jpg" << std::endl;
58+
#endif
59+
return 0;
60+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#include <fstream>
16+
17+
#include "flags.h"
18+
#include "macros.h"
19+
#include "option.h"
20+
21+
namespace vision = fastdeploy::vision;
22+
namespace benchmark = fastdeploy::benchmark;
23+
24+
DEFINE_bool(no_nms, false, "Whether the model contains nms.");
25+
26+
int main(int argc, char* argv[]) {
27+
#if defined(ENABLE_BENCHMARK) && defined(ENABLE_VISION)
28+
// Initialization
29+
auto option = fastdeploy::RuntimeOption();
30+
if (!CreateRuntimeOption(&option, argc, argv, true)) {
31+
return -1;
32+
}
33+
auto im = cv::imread(FLAGS_image);
34+
std::unordered_map<std::string, std::string> config_info;
35+
benchmark::ResultManager::LoadBenchmarkConfig(FLAGS_config_path,
36+
&config_info);
37+
std::string model_name, params_name, config_name;
38+
auto model_format = fastdeploy::ModelFormat::SOPHGO;
39+
if (!UpdateModelResourceName(&model_name, &params_name, &config_name,
40+
&model_format, config_info)) {
41+
return -1;
42+
}
43+
44+
auto model_file = FLAGS_model + sep + model_name;
45+
auto params_file = FLAGS_model + sep + params_name;
46+
auto config_file = FLAGS_model + sep + config_name;
47+
48+
auto model_ppyoloe_r = vision::detection::PPYOLOER(
49+
model_file, params_file, config_file, option, model_format);
50+
51+
vision::DetectionResult res;
52+
53+
// Run profiling
54+
BENCHMARK_MODEL(model_ppyoloe_r, model_ppyoloe_r.Predict(im, &res))
55+
56+
auto vis_im = vision::VisDetection(im, res);
57+
cv::imwrite("vis_result.jpg", vis_im);
58+
std::cout << "Visualized result saved in ./vis_result.jpg" << std::endl;
59+
#endif
60+
return 0;
61+
}

‎benchmark/cpp/flags.h

+9
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,14 @@ static bool UpdateModelResourceName(
158158
return false;
159159
}
160160
}
161+
162+
if (config_info["backend"] == "sophgo") {
163+
*model_format = fastdeploy::ModelFormat::SOPHGO;
164+
if (!GetModelResoucesNameFromDir(FLAGS_model, model_name, "bmodel")) {
165+
std::cout << "Can not find sophgo model resources." << std::endl;
166+
return false;
167+
}
168+
}
169+
161170
return true;
162171
}

‎benchmark/cpp/option.h

+3
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@ static bool CreateRuntimeOption(fastdeploy::RuntimeOption* option,
103103
if (config_info["use_fp16"] == "true") {
104104
option->paddle_lite_option.enable_fp16 = true;
105105
}
106+
} else if (config_info["backend"] == "sophgo") {
107+
option->UseSophgo();
108+
option->UseSophgoBackend();
106109
} else if (config_info["backend"] == "default") {
107110
PrintBenchmarkInfo(config_info);
108111
return true;

‎c_api/fastdeploy_capi/vision/result.h

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ typedef struct FD_C_OneDimMask {
5050

5151
typedef struct FD_C_DetectionResult {
5252
FD_C_TwoDimArrayFloat boxes;
53+
FD_C_TwoDimArrayFloat rotated_boxes;
5354
FD_C_OneDimArrayFloat scores;
5455
FD_C_OneDimArrayInt32 label_ids;
5556
FD_C_OneDimMask masks;

‎csharp/fastdeploy/types_internal_c.cs

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ public struct FD_OneDimMask {
135135
[StructLayout(LayoutKind.Sequential)]
136136
public struct FD_DetectionResult {
137137
public FD_TwoDimArrayFloat boxes;
138+
public FD_TwoDimArrayFloat rotated_boxes;
138139
public FD_OneDimArrayFloat scores;
139140
public FD_OneDimArrayInt32 label_ids;
140141
public FD_OneDimMask masks;

‎examples/vision/detection/paddledetection/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ English | [简体中文](README_CN.md)
1010
Now FastDeploy supports the deployment of the following models
1111

1212
- [PP-YOLOE(including PP-YOLOE+) models](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/ppyoloe)
13+
- [PP-YOLOE-R models](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/rotate/ppyoloe_r)
1314
- [PicoDet models](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/picodet)
1415
- [PP-YOLO models(including v2)](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/ppyolo)
1516
- [YOLOv3 models](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/yolov3)
@@ -43,7 +44,7 @@ Before deployment, PaddleDetection needs to be exported into the deployment mode
4344

4445
## Download Pre-trained Model
4546

46-
For developers' testing, models exported by PaddleDetection are provided below. Developers can download them directly.
47+
For developers' testing, models exported by PaddleDetection are provided below. Developers can download them directly.
4748

4849
The accuracy metric is from model descriptions in PaddleDetection. Refer to them for details.
4950

‎examples/vision/detection/paddledetection/README_CN.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
目前FastDeploy支持如下模型的部署
1111

1212
- [PP-YOLOE(含PP-YOLOE+)系列模型](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/ppyoloe)
13+
- [PP-YOLOE-R系列模型](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.6/configs/rotate/ppyoloe_r)
1314
- [PicoDet系列模型](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/picodet)
1415
- [PP-YOLO系列模型(含v2)](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/ppyolo)
1516
- [YOLOv3系列模型](https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.4/configs/yolov3)

‎examples/vision/detection/paddledetection/cpp/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ target_link_libraries(infer_faster_rcnn_demo ${FASTDEPLOY_LIBS})
1515
add_executable(infer_ppyoloe_demo ${PROJECT_SOURCE_DIR}/infer_ppyoloe.cc)
1616
target_link_libraries(infer_ppyoloe_demo ${FASTDEPLOY_LIBS})
1717

18+
add_executable(infer_ppyoloe_r_demo ${PROJECT_SOURCE_DIR}/infer_ppyoloe_r.cc)
19+
target_link_libraries(infer_ppyoloe_r_demo ${FASTDEPLOY_LIBS})
20+
1821
add_executable(infer_picodet_demo ${PROJECT_SOURCE_DIR}/infer_picodet.cc)
1922
target_link_libraries(infer_picodet_demo ${FASTDEPLOY_LIBS})
2023

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#include "fastdeploy/vision.h"
16+
17+
#ifdef WIN32
18+
const char sep = '\\';
19+
#else
20+
const char sep = '/';
21+
#endif
22+
23+
void CpuInfer(const std::string& model_dir, const std::string& image_file) {
24+
auto model_file = model_dir + sep + "model.pdmodel";
25+
auto params_file = model_dir + sep + "model.pdiparams";
26+
auto config_file = model_dir + sep + "infer_cfg.yml";
27+
auto option = fastdeploy::RuntimeOption();
28+
option.UseCpu();
29+
auto model = fastdeploy::vision::detection::PPYOLOER(model_file, params_file,
30+
config_file, option);
31+
if (!model.Initialized()) {
32+
std::cerr << "Failed to initialize." << std::endl;
33+
return;
34+
}
35+
36+
auto im = cv::imread(image_file);
37+
std::cout << im.cols << " vs " << im.rows << std::endl;
38+
fastdeploy::vision::DetectionResult res;
39+
if (!model.Predict(im, &res)) {
40+
std::cerr << "Failed to predict." << std::endl;
41+
return;
42+
}
43+
44+
std::cout << res.Str() << std::endl;
45+
auto vis_im = fastdeploy::vision::VisDetection(im, res, 0.5);
46+
cv::imwrite("vis_result.jpg", vis_im);
47+
std::cout << "Visualized result saved in ./vis_result.jpg" << std::endl;
48+
}
49+
50+
void GpuInfer(const std::string& model_dir, const std::string& image_file) {
51+
auto model_file = model_dir + sep + "model.pdmodel";
52+
auto params_file = model_dir + sep + "model.pdiparams";
53+
auto config_file = model_dir + sep + "infer_cfg.yml";
54+
55+
auto option = fastdeploy::RuntimeOption();
56+
option.UseGpu();
57+
auto model = fastdeploy::vision::detection::PPYOLOER(model_file, params_file,
58+
config_file, option);
59+
if (!model.Initialized()) {
60+
std::cerr << "Failed to initialize." << std::endl;
61+
return;
62+
}
63+
64+
const cv::Mat im = cv::imread(image_file);
65+
66+
fastdeploy::vision::DetectionResult res;
67+
if (!model.Predict(im, &res)) {
68+
std::cerr << "Failed to predict." << std::endl;
69+
return;
70+
}
71+
72+
std::cout << res.Str() << std::endl;
73+
auto vis_im = fastdeploy::vision::VisDetection(im, res, 0.1);
74+
cv::imwrite("vis_result.jpg", vis_im);
75+
std::cout << "Visualized result saved in ./vis_result.jpg" << std::endl;
76+
}
77+
78+
int main(int argc, char* argv[]) {
79+
if (argc < 4) {
80+
std::cout
81+
<< "Usage: infer_ppyoloe_r path/to/model_dir path/to/image run_option, "
82+
"e.g ./infer_ppyoloe_r ./ppyoloe_model_dir ./test.jpeg 0"
83+
<< std::endl;
84+
std::cout << "The data type of run_option is int, 0: run with cpu; 1: run "
85+
"with gpu; 2: run with gpu and use tensorrt backend; 3: run "
86+
"with kunlunxin."
87+
<< std::endl;
88+
return -1;
89+
}
90+
91+
if (std::atoi(argv[3]) == 0) {
92+
CpuInfer(argv[1], argv[2]);
93+
} else if (std::atoi(argv[3]) == 1) {
94+
GpuInfer(argv[1], argv[2]);
95+
}
96+
97+
return 0;
98+
}

0 commit comments

Comments
 (0)
Please sign in to comment.