-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDigitReader.java
35 lines (32 loc) · 934 Bytes
/
DigitReader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* @author Derek Babb <[email protected]>
* @version 1.0
* @since 7-17-2013
*
* DigitReader is an interface that is used with ScoreMaker to test an
* optical character recognition algorithm for a scoreboard.
*
*/
public interface DigitReader
{
/**
* setImage will accept a PictureEdit object. The image should be saved within the class
* so other methods may "read" the digit.
*
* @param digitPic is the picture of a single digit from a scoreboard.
*/
public void setImage(PictureEdit digitPic);
/**
* getDigit will return the digit that the OCR algorithm beleives is the digit from the image
* that has been previously loaded.
*
* @return a number 0-9 for the digit, return -1 if it cannot be read.
*/
public int getDigit();
/**
* Each OCR should have a name for the purpose of listing in the menu.
*
* @return name of the OCR.
*/
public String getName();
}