mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 09:07:10 +08:00
[Model] Support YOLOv8 (#1137)
* add GPL lisence * add GPL-3.0 lisence * add GPL-3.0 lisence * add GPL-3.0 lisence * support yolov8 * add pybind for yolov8 * add yolov8 readme Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
This commit is contained in:
@@ -29,6 +29,7 @@ void BindNanoDetPlus(pybind11::module& m);
|
||||
void BindPPDet(pybind11::module& m);
|
||||
void BindYOLOv7End2EndTRT(pybind11::module& m);
|
||||
void BindYOLOv7End2EndORT(pybind11::module& m);
|
||||
void BindYOLOv8(pybind11::module& m);
|
||||
void BindRKYOLO(pybind11::module& m);
|
||||
|
||||
void BindDetection(pybind11::module& m) {
|
||||
@@ -47,6 +48,7 @@ void BindDetection(pybind11::module& m) {
|
||||
BindNanoDetPlus(detection_module);
|
||||
BindYOLOv7End2EndTRT(detection_module);
|
||||
BindYOLOv7End2EndORT(detection_module);
|
||||
BindYOLOv8(detection_module);
|
||||
BindRKYOLO(detection_module);
|
||||
}
|
||||
} // namespace fastdeploy
|
||||
|
Reference in New Issue
Block a user