| syntax = "proto2"; | |
| package object_detection.protos; | |
| import "object_detection/protos/box_coder.proto"; | |
| import "object_detection/protos/matcher.proto"; | |
| import "object_detection/protos/region_similarity_calculator.proto"; | |
| // Message to configure Target Assigner for object detectors. | |
| message TargetAssigner { | |
| optional Matcher matcher = 1; | |
| optional RegionSimilarityCalculator similarity_calculator = 2; | |
| optional BoxCoder box_coder = 3; | |
| } | |