[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:
DefTruth
2022-08-30 15:01:20 +08:00
committed by GitHub
parent c1e65d0e57
commit 30bb233db8
13 changed files with 886 additions and 0 deletions

View File

@@ -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