Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Different types of machine-readable forms can take different types of marks. Answer sheets usually require the bubbles to be completely filled with a pen or marker. Ballot boxes are typically marked with checkmarks or crosses. Surveys and questionnaires are sometimes filled with a pencil so that corrections can be made. In addition, paper quality, watermarks, and even lighting conditions when photographing a completed form can adversely affect recognition accuracy.
All Aspose.OMR for Java recognition methods support recognitionThreshold
parameter that allows you to fine-tune form processing and produce results with near 100% accuracy. This parameter is called recognition accuracy threshold.
From a technical standpoint, it defines the fill percentage of the bubble from 0
(empty bubble) to 100
(completely filled bubble). Lower values allow even the lightest marks (such as pencil dots or crosses) to be recognized, but may cause dirt, paper defects, or watermarks to be identified as false positives. Higher values require a more solid fill and may cause pencil marks or small checkmarks to be ignored.
70
. This would require almost the entire bubble to be completely filled with a dark pen, which can be a burden on respondents.recognitionThreshold
parameter is omitted) depends on the bubble type and provides reliable results in most use cases.OmrEngine engine = new OmrEngine();
TemplateProcessor processor = engine.getTemplateProcessor("pattern.omr");
RecognitionResult result = processor.recognizeImage("survey123.png", 35);
String csv = result.getCsv();
System.out.println(csv);
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.