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.

15 lines
418 B

6 years ago
  1. syntax = "proto2";
  2. package object_detection.protos;
  3. import "object_detection/protos/argmax_matcher.proto";
  4. import "object_detection/protos/bipartite_matcher.proto";
  5. // Configuration proto for the matcher to be used in the object detection
  6. // pipeline. See core/matcher.py for details.
  7. message Matcher {
  8. oneof matcher_oneof {
  9. ArgMaxMatcher argmax_matcher = 1;
  10. BipartiteMatcher bipartite_matcher = 2;
  11. }
  12. }