Updated textline dependencies to provide crop size in function call. Fixes issue #126.

This commit is contained in:
Matt Hill
2015-05-30 10:11:06 -04:00
parent c18d76bbdc
commit 5c6af43212
3 changed files with 4 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ namespace alpr
textAreaRemapped = imgTransform.remapSmallPointstoCrop(textArea, transmtx);
linePolygonRemapped = imgTransform.remapSmallPointstoCrop(linePolygon, transmtx);
newLines.push_back(TextLine(textAreaRemapped, linePolygonRemapped));
newLines.push_back(TextLine(textAreaRemapped, linePolygonRemapped, pipeline_data->crop_gray.size()));
}
pipeline_data->textLines.clear();