mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 09:07:10 +08:00
[feature][vision] Add YOLOv7 End2End model with ORT NMS (#152)
* [feature][cmake] enable build fastdeploy with examples * [feature][cmake] enable build fastdeploy with examples * [feature][vision] Add YOLOv7 End2End model with ORT NMS * [docs] update yolov7end2end_ort docs update yolov7end2end_ort docs * [docs] update yolov7end2end_ort examples docs update yolov7end2end_ort examples docs * [docs] update yolov7end2end_ort examples docs Co-authored-by: Jason <jiangjiajun@baidu.com>
This commit is contained in:
@@ -25,6 +25,7 @@ void BindYOLOv5(pybind11::module& m);
|
||||
void BindYOLOX(pybind11::module& m);
|
||||
void BindNanoDetPlus(pybind11::module& m);
|
||||
void BindPPDet(pybind11::module& m);
|
||||
void BindYOLOv7End2EndORT(pybind11::module& m);
|
||||
|
||||
void BindDetection(pybind11::module& m) {
|
||||
auto detection_module =
|
||||
@@ -38,5 +39,6 @@ void BindDetection(pybind11::module& m) {
|
||||
BindYOLOv5(detection_module);
|
||||
BindYOLOX(detection_module);
|
||||
BindNanoDetPlus(detection_module);
|
||||
BindYOLOv7End2EndORT(detection_module);
|
||||
}
|
||||
} // namespace fastdeploy
|
||||
|
Reference in New Issue
Block a user