mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-05 22:36:53 +08:00
Added runtime data dir parameter
just in case it's not possible to configure the runtime directory via config file (i.e., if the location is only known at runtime)
This commit is contained in:
@@ -22,9 +22,9 @@
|
||||
|
||||
// ALPR code
|
||||
|
||||
Alpr::Alpr(const std::string country, const std::string configFile)
|
||||
Alpr::Alpr(const std::string country, const std::string configFile, const std::string runtimeDir)
|
||||
{
|
||||
impl = new AlprImpl(country, configFile);
|
||||
impl = new AlprImpl(country, configFile, runtimeDir);
|
||||
}
|
||||
|
||||
Alpr::~Alpr()
|
||||
|
Reference in New Issue
Block a user