Update docs for wrong path (#338)

This commit is contained in:
huangjianhui
2022-10-10 13:51:53 +08:00
committed by GitHub
parent f8cf99d5c8
commit 1635c5a8b3
15 changed files with 15 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
# Vision Model Inference Results
FastDeploy defines different structs (`csrcs/fastdeploy/vision/common/result.h`) to demonstrate the model inference results according to the task types of vision models. The details are as follows
FastDeploy defines different structs (`fastdeploy/vision/common/result.h`) to demonstrate the model inference results according to the task types of vision models. The details are as follows
| Struct | Doc | Description | Related Models |
|:--------------------- |:------------------------------------------ |:---------------------------------------------------------------------------- |:----------------------- |

View File

@@ -1,6 +1,6 @@
# Image Classification Results - ClassifyResult
The ClassifyResult function is defined in `csrcs/fastdeploy/vision/common/result.h` , indicating the classification results and confidence level of the image.
The ClassifyResult function is defined in `fastdeploy/vision/common/result.h` , indicating the classification results and confidence level of the image.
## C++ Definition

View File

@@ -1,6 +1,6 @@
# Detection Results
The DetectionResult function is defined in `csrcs/fastdeploy/vision/common/result.h` , indicating the object's frame, class and confidence level from the image detection.
The DetectionResult function is defined in `fastdeploy/vision/common/result.h` , indicating the object's frame, class and confidence level from the image detection.
## C++ Definition

View File

@@ -1,6 +1,6 @@
# Face Detection Results
The FaceDetectionResult function is defined in `csrcs/fastdeploy/vision/common/result.h` , indicating the object's frame, face landmarks , target confidence and the number of landmarks for each face detected.
The FaceDetectionResult function is defined in `fastdeploy/vision/common/result.h` , indicating the object's frame, face landmarks , target confidence and the number of landmarks for each face detected.
## C++ Definition

View File

@@ -1,6 +1,6 @@
# Face Recognition Results
The FaceRecognitionResult function is defined in `csrcs/fastdeploy/vision/common/result.h` , indicating the embedding of image features by the face recognition model.
The FaceRecognitionResult function is defined in `fastdeploy/vision/common/result.h` , indicating the embedding of image features by the face recognition model.
## C++ Definition

View File

@@ -1,6 +1,6 @@
# Matting Results
The MattingResult function is defined in `csrcs/fastdeploy/vision/common/result.h` , indicating the value of alpha transparency predicted by the model, the predicted foreground.
The MattingResult function is defined in `fastdeploy/vision/common/result.h` , indicating the value of alpha transparency predicted by the model, the predicted foreground.
## C++ Definition

View File

@@ -1,6 +1,6 @@
# Segmentation Results
The SegmentationResult function is defined in `csrcs/fastdeploy/vision/common/result.h` , indicating the predicted segmentation class and the probability value of the segmentation class from each pixel in the image.
The SegmentationResult function is defined in `fastdeploy/vision/common/result.h` , indicating the predicted segmentation class and the probability value of the segmentation class from each pixel in the image.
## C++ Definition