mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-06 04:36:50 +08:00
Fixed API bugs caused by missing RegionOfInterest values
This commit is contained in:
@@ -51,8 +51,7 @@ namespace alpr
|
||||
|
||||
AlprResults Alpr::recognize(std::vector<char> imageBytes)
|
||||
{
|
||||
std::vector<AlprRegionOfInterest> regionsOfInterest;
|
||||
return impl->recognize(imageBytes, regionsOfInterest);
|
||||
return impl->recognize(imageBytes);
|
||||
}
|
||||
|
||||
AlprResults Alpr::recognize(unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight, std::vector<AlprRegionOfInterest> regionsOfInterest)
|
||||
|
Reference in New Issue
Block a user