mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-05 12:56:51 +08:00
34 lines
592 B
C++
34 lines
592 B
C++
|
|
#ifndef OPENALPR_DAEMONCONFIG_H
|
|
#define OPENALPR_DAEMONCONFIG_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "simpleini/simpleini.h"
|
|
|
|
class DaemonConfig {
|
|
public:
|
|
DaemonConfig(std::string config_file, std::string config_defaults_file);
|
|
virtual ~DaemonConfig();
|
|
|
|
std::vector<std::string> stream_urls;
|
|
|
|
std::string country;
|
|
|
|
int topn;
|
|
int analysis_threads;
|
|
bool storePlates;
|
|
std::string imageFolder;
|
|
bool uploadData;
|
|
std::string upload_url;
|
|
std::string company_id;
|
|
std::string site_id;
|
|
std::string pattern;
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif /* OPENALPR_DAEMONCONFIG_H */
|
|
|