From abd6d2381b39009f8bd9faf47ddf4535a1596fdc Mon Sep 17 00:00:00 2001
From: liuxiaolong <736321739@qq.com>
Date: 星期三, 04 十二月 2019 13:24:47 +0800
Subject: [PATCH] add pollChannelCount to PollConfig
---
sdk.proto | 19 +++++++------------
1 files changed, 7 insertions(+), 12 deletions(-)
diff --git a/sdk.proto b/sdk.proto
index 4e41732..cf8e7dd 100644
--- a/sdk.proto
+++ b/sdk.proto
@@ -112,12 +112,9 @@
// bytes picCache = 19;
// bytes reserved = 20;
}
-message PlateIDResult {
- repeated PlateID result = 1;
-}
// cloud
-message PlateCloudID{
+message PlateIDCloud{
string license = 1;
Rect rcLocation = 2;
int32 nConfidence = 3;
@@ -140,18 +137,14 @@
// repeated Rect charConfidence = 19;
}
-message PlateCloudIDResult {
- repeated PlateCloudID result = 1;
-}
-
-message PlateVehicleID{
+message PlateIDVehicle{
int32 nPlateFlag = 1;
int32 nColor = 2;
int32 nType = 3;
string license = 4;
int32 nConfidence = 5;
int32 nCharNum = 6;
- bytes nCharConfidence = 7;
+ repeated int32 nCharConfidence = 7;
Rect rcLocation = 8;
Rect rcCarLocation = 9;
string vehicleType = 10;
@@ -171,6 +164,8 @@
}
-message PlateVehicleIDResult {
- repeated PlateVehicleID result = 1;
+message PlateIDResult {
+ // repeated PlateID result = 1;
+ // repeated PlateIDCloud result = 1;
+ repeated PlateIDVehicle result = 1;
}
--
Gitblit v1.8.0