i’m trying to scan the image below using the following code below. It does work but it take about 1 minute for this line of code to run.
OmrProcessingResult result = engine.ExtractData(new OmrImage[] { image });
There are about 23 TextOCR boxes in the OMR template. Any help with performance would be appreciated.
OmrEngine engine = new OmrEngine(template);
//Get the configurations of OmrEngine
OmrConfig config = engine.Configuration;
//Set fill threshold
config.FillThreshold = 0.02;
// Extract data. This template has only one page.
OmrProcessingResult result = engine.ExtractData(new OmrImage[] { image });
// Load actual result from
Hashtable OmrResult = result.PageData[0];
inspsheet_Page_1.png (376.8 KB)