initial commit to ForegroundSegmentation Plugin

Change-Id: I916e8afe613926024a06b69943830ceba42820d3
diff --git a/ForegroundSegmentation/pluginParameters.h b/ForegroundSegmentation/pluginParameters.h
new file mode 100644
index 0000000..5bd5d7d
--- /dev/null
+++ b/ForegroundSegmentation/pluginParameters.h
@@ -0,0 +1,20 @@
+#ifndef _PLUGINPARAMETERS_H_
+#define _PLUGINPARAMETERS_H_
+
+// #pragma once
+#include <string>
+#include <map>
+
+
+struct PluginParameters {
+    std::string stream = "out";
+    std::string model = "model_256_Qlatency.tflite";
+    std::string image = "background1.png";
+};
+
+void setGlobalPluginParameters(std::map<std::string, std::string> pp);
+
+void getGlobalPluginParameters(PluginParameters* mPluginParameters);
+PluginParameters* getGlobalPluginParameters();
+
+#endif //__PLUGINPREFERENCE_H_
\ No newline at end of file