blob: a59a45d0f6382032985a73d0b7784f4145e9d6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
syntax = "proto3";
import "DetectionBenchmark.proto";
package Tango.PMR.TCC;
option java_package = "com.twine.tango.pmr.tcc";
message DetectionInput
{
bytes Bitmap = 1;
int32 Columns = 2;
int32 Rows = 3;
int32 TargetIndex = 4;
bool RequestDebugImage = 5;
bool RequestColorMatrix = 6;
repeated DetectionBenchmark Benchmarks = 7;
bool PerformCLAHE = 8;
}
|