Fixed compile error in classifychars

This commit is contained in:
Matt Hill
2015-08-10 23:08:40 -04:00
parent 6e94703dea
commit 228af9b290

View File

@@ -323,7 +323,7 @@ vector<string> showCharSelection(Mat image, vector<Rect> charRegions, string sta
for (int i = 0; i < charRegions.size(); i++)
humanInputs[i] = SPACE;
RegexRule regex_rule("", "[\\pL\\pN]");
RegexRule regex_rule("", "[\\pL\\pN]", "", "");
int16_t waitkey = waitKey(50);
while (waitkey != ENTER_KEY && waitkey != ESCAPE_KEY)