mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-05 08:37:06 +08:00

* modify yolov7 and visualize functions * Add a sample document and example code * Delete .README.md.swp * Update README.md * Update README.md * Update README.md
视觉模型预测结果说明
FastDeploy根据视觉模型的任务类型,定义了不同的结构体(csrcs/fastdeploy/vision/common/result.h
)来表达模型预测结果,具体如下表所示
结构体 | 文档 | 说明 | 相应模型 |
---|---|---|---|
ClassificationResult | C++/Python文档 | 图像分类返回结果 | ResNet50、MobileNetV3等 |
DetectionResult | C++/Python文档 | 目标检测返回结果 | PPYOLOE、YOLOv7系列模型等 |