public class OmrProcessingResult extends Object
Represent a result of data extraction from an OMR sheet
OmrImage image = OmrImage.load("image.png"); // image path OmrTemplate template = OmrTemplate.load("template.amr"); // template path OmrEngine engine = new OmrEngine(template); OmrProcessingResult result = engine.extractData(new OmrImage[] { image }); // Gets the page data collection of the processed document StringDictionary dictionary = result.getPageData()[0];
Constructor and Description |
---|
OmrProcessingResult(Hashtable[] pageData)
Initializes a new instance of the
OmrProcessingResult class. |
public OmrProcessingResult(Hashtable[] pageData)
Initializes a new instance of the OmrProcessingResult
class.
pageData
- The page data.public Hashtable[] getPageData()
Gets the page data collection of the processed document
Copyright © 2017. All Rights Reserved.