Added JSON deserializer

This commit is contained in:
Matt Hill
2014-10-23 17:20:46 -04:00
parent 70ab96a639
commit f18a3b5c54
4 changed files with 84 additions and 3 deletions

View File

@@ -62,6 +62,11 @@ std::string Alpr::toJson( AlprResults results )
return impl->toJson(results);
}
AlprResults Alpr::fromJson(std::string json) {
return impl->fromJson(json);
}
void Alpr::setDetectRegion(bool detectRegion)
{
impl->setDetectRegion(detectRegion);