Updated state detection API

This commit is contained in:
Matt Hill
2015-10-17 08:53:39 -04:00
parent 322176cc69
commit c4a896d969
5 changed files with 5 additions and 9 deletions

View File

@@ -53,14 +53,10 @@ namespace alpr
recognizer.plateDetector = createDetector(config);
recognizer.ocr = new OCR(config);
recognizer.stateDetector = new StateDetector(this->config->country, this->config->runtimeBaseDir);
recognizer.stateDetector = new StateDetector(this->config->country, this->config->config_file_path, this->config->runtimeBaseDir);
recognizers[config->country] = recognizer;
}
setNumThreads(0);