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