sunty
2019-12-19 b95da65535d039db20a4362d33c3a39fe84436e2
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;
}
}