1234567891011121314151617181920212223242526272829 |
- #ifndef INFER_RESULT_H
- #define INFER_RESULT_H
- #include <string>
- typedef struct
- {
- int left;
- int top;
- int right;
- int bottom;
- } image_rect_t;
- typedef struct
- {
- image_rect_t box;
- float prop;
- int cls_id;
- } object_detect_result;
- typedef struct
- {
- int id;
- int count;
- object_detect_result results[128];
- } object_detect_result_list;
- #endif // INFER_RESULT_H
|