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.

17 lines
608 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. import "object_detection/protos/grid_anchor_generator.proto";
  4. import "object_detection/protos/ssd_anchor_generator.proto";
  5. import "object_detection/protos/multiscale_anchor_generator.proto";
  6. // Configuration proto for the anchor generator to use in the object detection
  7. // pipeline. See core/anchor_generator.py for details.
  8. message AnchorGenerator {
  9. oneof anchor_generator_oneof {
  10. GridAnchorGenerator grid_anchor_generator = 1;
  11. SsdAnchorGenerator ssd_anchor_generator = 2;
  12. MultiscaleAnchorGenerator multiscale_anchor_generator = 3;
  13. }
  14. }