NCTC / models /research /object_detection /protos /square_box_coder.proto
NCTCMumbai's picture
Upload 2571 files
0b8359d
raw
history blame contribute delete
419 Bytes
syntax = "proto2";
package object_detection.protos;
// Configuration proto for SquareBoxCoder. See
// box_coders/square_box_coder.py for details.
message SquareBoxCoder {
// Scale factor for anchor encoded box center.
optional float y_scale = 1 [default = 10.0];
optional float x_scale = 2 [default = 10.0];
// Scale factor for anchor encoded box length.
optional float length_scale = 3 [default = 5.0];
}