From 8ef3322ca3ddfd6211bc33c28396637148dc7330 Mon Sep 17 00:00:00 2001 From: liuxiaolong <736321739@qq.com> Date: 星期一, 09 十二月 2019 18:26:56 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.5.5:10010/r/pubsub/protomsg --- sdk.proto | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/sdk.proto b/sdk.proto index cf8e7dd..8fcec05 100644 --- a/sdk.proto +++ b/sdk.proto @@ -169,3 +169,16 @@ // repeated PlateIDCloud result = 1; repeated PlateIDVehicle result = 1; } + +message HumanTrack { + 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; +} -- Gitblit v1.8.0