From 85e9070b14b617cdf38a1407daf26005eeaadb83 Mon Sep 17 00:00:00 2001 From: zhangmeng <775834166@qq.com> Date: 星期五, 06 十二月 2019 14:10:43 +0800 Subject: [PATCH] add human track --- sdk.proto | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/sdk.proto b/sdk.proto index cf8e7dd..bc6b90a 100644 --- a/sdk.proto +++ b/sdk.proto @@ -169,3 +169,20 @@ // repeated PlateIDCloud result = 1; repeated PlateIDVehicle result = 1; } + +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; +} + +message HumanTrackResult { + repeated HumanTrack result = 1; + int32 count = 2; +} \ No newline at end of file -- Gitblit v1.8.0