浏览代码

start turnstile detection proto

liqingxia 3 年之前
父节点
当前提交
7de2a9267f
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      src/include/proto/startturnstile.proto

+ 11 - 0
src/include/proto/startturnstile.proto

@@ -0,0 +1,11 @@
+syntax = "proto2";
+
+package iv.vision;
+
+message startturnstile
+{
+  optional int64 time = 1;  //时间戳
+  optional string cameraname = 2; //共享内存的名字,根据闸机位置,获取对应摄像头图像
+  optional bool start = 3;   //到达闸机点,start=true,开启检测;离开闸机点,start=false,关闭检测
+}
+