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

14 lines
419 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. // Configuration proto for SquareBoxCoder. See
  4. // box_coders/square_box_coder.py for details.
  5. message SquareBoxCoder {
  6. // Scale factor for anchor encoded box center.
  7. optional float y_scale = 1 [default = 10.0];
  8. optional float x_scale = 2 [default = 10.0];
  9. // Scale factor for anchor encoded box length.
  10. optional float length_scale = 3 [default = 5.0];
  11. }