File size: 443 Bytes
97b6013 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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;
}
|