Added setMask function to main ALPR API

This commit is contained in:
Matt Hill
2016-03-27 13:49:13 -04:00
parent ac4ff70e96
commit 53dda59829
4 changed files with 26 additions and 0 deletions

View File

@@ -95,6 +95,10 @@ namespace alpr
impl->setPrewarp(prewarp_config);
}
void Alpr::setMask(unsigned char* pixelData, int bytesPerPixel, int imgWidth, int imgHeight)
{
impl->setMask(pixelData, bytesPerPixel, imgWidth, imgHeight);
}
void Alpr::setDetectRegion(bool detectRegion)
{