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.

19 lines
575 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. // Configuration proto for KeypointBoxCoder. See
  4. // box_coders/keypoint_box_coder.py for details.
  5. message KeypointBoxCoder {
  6. optional int32 num_keypoints = 1;
  7. // Scale factor for anchor encoded box center and keypoints.
  8. optional float y_scale = 2 [default = 10.0];
  9. optional float x_scale = 3 [default = 10.0];
  10. // Scale factor for anchor encoded box height.
  11. optional float height_scale = 4 [default = 5.0];
  12. // Scale factor for anchor encoded box width.
  13. optional float width_scale = 5 [default = 5.0];
  14. }