blob: 55cf3608d6709d00aafe8f35f00f11c3236531d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
syntax = "proto3";
import "DetectionColor.proto";
package Tango.PMR.TCC;
option java_package = "com.twine.tango.pmr.tcc";
message DetectionOutput
{
DetectionColor RawColor = 1;
DetectionColor ProcessedColor = 2;
bytes DebugBitmap = 3;
repeated DetectionColor ColorMatrix = 4;
bool HasError = 5;
string ErrorMessage = 6;
}
|