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

syntax = "proto2";
package object_detection.protos;
import "object_detection/protos/argmax_matcher.proto";
import "object_detection/protos/bipartite_matcher.proto";
// Configuration proto for the matcher to be used in the object detection
// pipeline. See core/matcher.py for details.
message Matcher {
oneof matcher_oneof {
ArgMaxMatcher argmax_matcher = 1;
BipartiteMatcher bipartite_matcher = 2;
}
}