blob: 5bd5d7d3801b8eaae9e6cf5c74206e5b6adb62db [file] [log] [blame]
#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_