mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
* 第一次提交 * 补充一处漏翻译 * deleted: docs/en/quantize.md * Update one translation * Update en version * Update one translation in code * Standardize one writing * Standardize one writing * Update some en version * Fix a grammer problem * Update en version for api/vision result * Merge branch 'develop' of https://github.com/charl-u/FastDeploy into develop * Checkout the link in README in vision_results/ to the en documents * Modify a title * Add link to serving/docs/ * Finish translation of demo.md * Update english version of serving/docs/ * Update title of readme * Update some links * Modify a title * Update some links * Update en version of java android README * Modify some titles * Modify some titles * Modify some titles
2.2 KiB
Executable File
2.2 KiB
Executable File
English| 简体中文
视觉模型预测结果说明
FastDeploy根据视觉模型的任务类型,定义了不同的结构体(fastdeploy/vision/common/result.h)来表达模型预测结果,具体如下表所示
| 结构体 | 文档 | 说明 | 相应模型 |
|---|---|---|---|
| ClassifyResult | C++/Python文档 | 图像分类返回结果 | ResNet50、MobileNetV3等 |
| SegmentationResult | C++/Python文档 | 图像分割返回结果 | PP-HumanSeg、PP-LiteSeg等 |
| DetectionResult | C++/Python文档 | 目标检测返回结果 | PP-YOLOE、YOLOv7系列模型等 |
| FaceDetectionResult | C++/Python文档 | 人脸检测返回结果 | SCRFD、RetinaFace系列模型等 |
| FaceAlignmentResult | C++/Python文档 | 人脸对齐(人脸关键点检测)返回结果 | PFLD系列模型等 |
| KeyPointDetectionResult | C++/Python文档 | 关键点检测返回结果 | PP-Tinypose系列模型等 |
| FaceRecognitionResult | C++/Python文档 | 人脸识别返回结果 | ArcFace、CosFace系列模型等 |
| MattingResult | C++/Python文档 | 图片/视频抠图返回结果 | MODNet、RVM系列模型等 |
| OCRResult | C++/Python文档 | 文本框检测,分类和文本识别返回结果 | OCR系列模型等 |
| MOTResult | C++/Python文档 | 多目标跟踪返回结果 | pptracking系列模型等 |
| HeadPoseResult | C++/Python文档 | 头部姿态估计返回结果 | FSANet系列模型等 |