Added setCountry function to main API.

This allows the country to be changed without reloading the library and runtime_data
This commit is contained in:
Matt Hill
2016-02-14 15:58:04 -05:00
parent bc6e49b546
commit eb2954e49f
6 changed files with 83 additions and 31 deletions

View File

@@ -87,6 +87,10 @@ namespace alpr
return AlprImpl::fromJson(json);
}
void Alpr::setCountry(std::string country) {
impl->setCountry(country);
}
void Alpr::setDetectRegion(bool detectRegion)
{