You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api_docs/cpp/vision_results_en.md
+26-12
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,16 @@
1
-
# Description of Vision Results
1
+
English | [简体中文](./vision_results_cn.md)
2
2
3
-
本文档的中文版本参考[视觉模型预测结果说明](./vision_results_cn.md)
3
+
# Description of Vision Results
4
4
5
5
## Image Classification Result
6
6
7
7
The ClassifyResult code is defined in `fastdeploy/vision/common/result.h`, and is used to indicate the classification result and confidence level of the image.
8
8
9
9
### C++ Definition
10
10
11
-
`fastdeploy::vision::ClassifyResult`
11
+
```c++
12
+
fastdeploy::vision::ClassifyResult
13
+
```
12
14
13
15
```c++
14
16
structClassifyResult {
@@ -31,7 +33,9 @@ The SegmentationResult code is defined in `fastdeploy/vision/common/result.h`, i
31
33
32
34
### C++ Definition
33
35
34
-
``fastdeploy::vision::SegmentationResult``
36
+
```c++
37
+
fastdeploy::vision::SegmentationResult
38
+
```
35
39
36
40
```c++
37
41
structSegmentationResult {
@@ -104,7 +108,9 @@ The FaceDetectionResult code is defined in `fastdeploy/vision/common/result.h`,
104
108
105
109
### C++ Definition
106
110
107
-
``fastdeploy::vision::FaceDetectionResult``
111
+
```c++
112
+
fastdeploy::vision::FaceDetectionResult
113
+
```
108
114
109
115
```c++
110
116
structFaceDetectionResult {
@@ -131,7 +137,9 @@ The KeyPointDetectionResult code is defined in `fastdeploy/vision/common/result.
The FaceRecognitionResult code is defined in `fastdeploy/vision/common/result.h`, and is used to indicate the image features embedding in the face recognition model.
The MattingResult code is defined in `fastdeploy/vision/common/result.h`, and is used to indicate the predicted value of alpha transparency predicted and the predicted foreground, etc.
181
191
182
192
### C++ Definition
183
-
184
-
``fastdeploy::vision::MattingResult`''
193
+
```c++
194
+
fastdeploy::vision::MattingResult
195
+
```
185
196
186
197
```c++
187
198
structMattingResult {
@@ -239,8 +250,9 @@ struct OCRResult {
239
250
The FaceAlignmentResult code is defined in `fastdeploy/vision/common/result.h`, and is used to indicate face landmarks.
240
251
241
252
### C++ Definition
242
-
243
-
`fastdeploy::vision::FaceAlignmentResult`
253
+
```c++
254
+
fastdeploy::vision::FaceAlignmentResult
255
+
```
244
256
245
257
```c++
246
258
structFaceAlignmentResult {
@@ -261,7 +273,9 @@ The HeadPoseResult code is defined in `fastdeploy/vision/common/result.h`, and i
Copy file name to clipboardExpand all lines: examples/vision/segmentation/paddleseg/android/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
English | [简体中文](README_CN.md)
2
-
# PaddleSeg Android Demo for Target Detection
2
+
# PaddleSeg Android Demo for Image Segmentation
3
3
4
4
For real-time portrait segmentation on Android, this demo has good ease of use and openness. You can run your own training model in the demo.
5
5
@@ -10,7 +10,7 @@ For real-time portrait segmentation on Android, this demo has good ease of use a
10
10
11
11
## Deployment Steps
12
12
13
-
1.Target detection PaddleSeg Demo is located in `fastdeploy/examples/vision/segmentation/paddleseg/android` directory.
13
+
1.Image Segmentation PaddleSeg Demo is located in `fastdeploy/examples/vision/segmentation/paddleseg/android` directory.
14
14
2. Please use Android Studio to open paddleseg/android project.
15
15
3. Connect your phone to your computer, turn on USB debugging and file transfer mode, and connect your own mobile device on Android Studio (your phone needs to be enabled to allow software installation from USB).
0 commit comments