You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ext.proto 431 B

2 years ago
123456789101112131415161718
  1. syntax = "proto3";
  2. package apulis.infer.cv.detection;
  3. option go_package = "public/cv/detection;apulis_infer_cv_detection";
  4. message Predict {
  5. message BBox {
  6. // [left-top , right-bottom]
  7. float x0 = 1;
  8. float y0 = 2;
  9. float x1 = 3;
  10. float y1 = 4;
  11. float score = 5;
  12. string label_name = 6;
  13. int32 label_id = 7;
  14. }
  15. repeated BBox bboxes = 1;
  16. }

No Description

Contributors (2)