mirror of
https://github.com/kerberos-io/openalpr-base.git
synced 2025-10-05 21:16:50 +08:00
Use line index rather than char region count to be more explicit
This commit is contained in:
@@ -43,7 +43,7 @@ namespace alpr
|
||||
|
||||
|
||||
int absolute_charpos = 0;
|
||||
for (unsigned int line_idx = 0; line_idx < pipeline_data->charRegions.size(); line_idx++)
|
||||
for (unsigned int line_idx = 0; line_idx < pipeline_data->textLines.size(); line_idx++)
|
||||
{
|
||||
std::vector<OcrChar> chars = recognize_line(line_idx, pipeline_data);
|
||||
|
||||
|
Reference in New Issue
Block a user