syntax = "proto3"; import "base.proto"; package protomsg; // Image ipc struct message Image { int32 width = 1; int32 height = 2; bytes data = 3; string timestamp = 4; int64 id = 5; string cid = 6; string cname = 7; } message Target{ uint64 id = 1; string type = 2; int32 confidence = 3; Rect rect = 4; bytes feature= 5; string attribute = 6; } message NewSDKMessage{ string sdkID = 1; string sdkType = 2; string sdkName = 3; repeated Target target = 4; string timestamp = 5; } message NewRuleMessage{ string dataType = 1; string handleTrack = 2; repeated NewSDKMessage message = 3; }