How to Extract OMR Data from Scanned Images inside C# & VB.NET Apps
Join the DZone community and get the full member experience.
Join For FreeThis technical tip shows how to extract OMR data from a scanned image inside .NET Applications. Developers can use the Aspose.OMR namespace to extract data entered into OMR (Optical Mark Recognition) forms, such as consumer surveys, assessment sheets, or lottery tickets. This article describes how to extract data from a scanned page using a OMR template created with OMR Template Editor tool. The Aspose.Omr namespace can be used to recognize and extract different elements from a scanned image. A template is required that contains graphical mapping of elements to be recognized from the scanned images. This template document is loaded using OmrTemplate. Pages with human marked data like surveys or tests are scanned, and the images loaded using the OmrImage class. A recognition engine (OmrEngine) is required for the template and can be initiated by using the current template as an argument. After the template has been set in the engine, the data is extracted from the scanned image using the OmrEngine class' ExtractData function. Below are the steps to extract OMR data from a scanned image:
- Load the template using OmrTemplate.
- Load the scanned image into OmrImage.
- Instantiate the recognition engine: OmrEngine for the template.
- Extract data and save to OmrProcessingResult.
//The sample code below shows how to extract OMR data from a scanned image
//[C#]
//Load template file
OmrTemplate template = OmrTemplate.Load(MyDir + "Grids.amr");
//Load the image to be analyzed
OmrImage image = OmrImage.Load(MyDir + "Grids-filled-scan.jpg");
// Instantiate the recognition engine for the template
OmrEngine engine = new OmrEngine(template);
// Extract data. This template has only one page.
OmrProcessingResult result = engine.ExtractData(new OmrImage[] { image });
//Load actual result from
Hashtable OmrResult = result.PageData[0];
//Get Collection of Keys
ICollection key = OmrResult.Keys;
foreach (string k in key)
{
Console.WriteLine(k + ": " + OmrResult[k]);
}
Console.ReadKey();
//[VB.NET]
'Load template file
Dim template As OmrTemplate = OmrTemplate.Load(myDir + "Grids.amr")
'Load the image to be analyzed
Dim image As OmrImage = OmrImage.Load(MyDir + "Grids-filled-scan.jpg")
'Instantiate the recognition engine for the template
Dim engine As OmrEngine = New OmrEngine(template)
'Extract data. This template has only one page.
Dim result As OmrProcessingResult = engine.ExtractData(New OmrImage() {image})
'Load actual result from
Dim OmrResult As Hashtable = result.PageData(0)
'Get collection of keys
Dim Key As ICollection = OmrResult.Keys
For Each k As String In Key
Console.WriteLine(k + ": " + OmrResult(Key))
Next
Console.ReadKey()
Opinions expressed by DZone contributors are their own.
Comments