Using site-camera-epochtime rather than random UUID. Removed UUID lib dependency

This commit is contained in:
Matt Hill
2014-10-01 08:39:44 -04:00
parent 3585e0436f
commit 8f63d32cc6
6 changed files with 11 additions and 52 deletions

View File

@@ -54,9 +54,9 @@ std::vector<AlprResult> Alpr::recognize(std::vector<unsigned char> imageBuffer,
return impl->recognize(imageBuffer, regionsOfInterest);
}
std::string Alpr::toJson(const std::vector< AlprResult > results, double processing_time_ms)
std::string Alpr::toJson(const std::vector< AlprResult > results, double processing_time_ms, long epoch_time)
{
return impl->toJson(results, processing_time_ms);
return impl->toJson(results, processing_time_ms, epoch_time);
}
void Alpr::setDetectRegion(bool detectRegion)