From b95da65535d039db20a4362d33c3a39fe84436e2 Mon Sep 17 00:00:00 2001 From: sunty <1172534965@qq.com> Date: 星期四, 19 十二月 2019 11:37:25 +0800 Subject: [PATCH] fix es.proto --- sdk.proto | 18 +++++++----------- 1 files changed, 7 insertions(+), 11 deletions(-) diff --git a/sdk.proto b/sdk.proto index bc6b90a..8fcec05 100644 --- a/sdk.proto +++ b/sdk.proto @@ -171,18 +171,14 @@ } message HumanTrack { - int32 left = 1; - int32 right = 2; - int32 top = 3; - int32 bottom = 4; - float confidence = 5; - int32 x = 6; - int32 y = 7; - int32 id = 8; - repeated float feature = 9; + Rect rcHuman = 1; + float confidence = 2; + int32 x = 3; + int32 y = 4; + int32 id = 5; + repeated float feature = 6; } message HumanTrackResult { repeated HumanTrack result = 1; - int32 count = 2; -} \ No newline at end of file +} -- Gitblit v1.8.0