From e0133948478bce31a0b06abd48b1dae4d7180624 Mon Sep 17 00:00:00 2001 From: Gabriel Falcones <gafalcon@espol.edu.ec> Date: Fri, 1 Jun 2018 14:45:35 -0500 Subject: [PATCH] gitignore --- .gitignore | 2 ++ FeatureExtractionApi.proto | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 FeatureExtractionApi.proto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9fc9476 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*pyc +__pycache__ diff --git a/FeatureExtractionApi.proto b/FeatureExtractionApi.proto new file mode 100644 index 0000000..0e9b500 --- /dev/null +++ b/FeatureExtractionApi.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; + +service FeatureExtraction{ + rpc processVideo (stream Image) returns (Response){} +} + +message Image { + bytes source = 1; + string file_name = 2; + string timestamp = 3; +} + +message Response{ + string status = 1; +} -- GitLab