|
| 1 | +English | [中文](detection_result.md) |
| 2 | + |
| 3 | +# Target Detection Result |
| 4 | + |
| 5 | +The DetectionResult code is defined in `fastdeploy/vision/common/result.h`, and is used to indicate the target frame, target class and target confidence level detected in the image. |
| 6 | + |
| 7 | +## C++ Definition |
| 8 | + |
| 9 | +```c++ |
| 10 | +fastdeploy::vision::DetectionResult |
| 11 | +``` |
| 12 | + |
| 13 | +```c++ |
| 14 | +struct DetectionResult { |
| 15 | + std::vector<std::array<float, 4>> boxes; |
| 16 | + std::vector<float> scores; |
| 17 | + std::vector<int32_t> label_ids; |
| 18 | + std::vector<Mask> masks; |
| 19 | + bool contain_masks = false; |
| 20 | + void Clear(); |
| 21 | + std::string Str(); |
| 22 | +}; |
| 23 | +``` |
| 24 | +
|
| 25 | +- **boxes**: Member variable which indicates the coordinates of all detected target boxes in a single image. `boxes.size()` indicates the number of boxes, each box is represented by 4 float values in order of xmin, ymin, xmax, ymax, i.e. the coordinates of the top left and bottom right corner. |
| 26 | +- **scores**: Member variable which indicates the confidence level of all targets detected in a single image, where the number of elements is the same as `boxes.size()`. |
| 27 | +- **label_ids**: Member variable which indicates all target categories detected in a single image, where the number of elements is the same as `boxes.size()`. |
| 28 | +- **masks**: Member variable which indicates all detected instance masks of a single image, where the number of elements and the shape size are the same as `boxes`. |
| 29 | +- **contain_masks**: Member variable which indicates whether the detected result contains instance masks, which is generally true for the instance segmentation model. |
| 30 | +- **Clear()**: Member function used to clear the results stored in the structure. |
| 31 | +- **Str()**: Member function used to output the information in the structure as string (for Debug). |
| 32 | +
|
| 33 | +```c++ |
| 34 | +fastdeploy::vision::Mask |
| 35 | +``` |
| 36 | +```c++ |
| 37 | +struct Mask { |
| 38 | + std::vector<int32_t> data; |
| 39 | + std::vector<int64_t> shape; // (H,W) ... |
| 40 | + |
| 41 | + void Clear(); |
| 42 | + std::string Str(); |
| 43 | +}; |
| 44 | +``` |
| 45 | +- **data**: Member variable which indicates a detected mask. |
| 46 | +- **shape**: Member variable which indicates the shape of the mask, e.g. (h,w). |
| 47 | +- **Clear()**: Member function used to clear the results stored in the structure. |
| 48 | +- **Str()**: Member function used to output the information in the structure as string (for Debug). |
| 49 | +
|
| 50 | +## Python Definition |
| 51 | +
|
| 52 | +```python |
| 53 | +fastdeploy.vision.DetectionResult |
| 54 | +``` |
| 55 | + |
| 56 | +- **boxes**(list of list(float)): Member variable which indicates the coordinates of all detected target boxes in a single frame. It is a list, and each element in it is also a list of length 4, representing a box with 4 float values representing xmin, ymin, xmax, ymax, i.e. the coordinates of the top left and bottom right corner. |
| 57 | +- **scores**(list of float): Member variable which indicates the confidence level of all targets detected in a single image. |
| 58 | +- **label_ids**(list of int): Member variable which indicates all target categories detected in a single image. |
| 59 | +- **masks**: Member variable which indicates all detected instance masks of a single image, where the number of elements and the shape size are the same as `boxes`. |
| 60 | +- **contain_masks**: Member variable which indicates whether the detected result contains instance masks, which is generally true for the instance segmentation model. |
| 61 | + |
| 62 | +```python |
| 63 | +fastdeploy.vision.Mask |
| 64 | +``` |
| 65 | +- **data**: Member variable which indicates a detected mask. |
| 66 | +- **shape**: Member variable which indicates the shape of the mask, e.g. (h,w). |
0 commit comments