Package | Description |
---|---|
org.openimaj.image.text.extraction.swt |
Modifier and Type | Field and Description |
---|---|
protected List<LetterCandidate> |
WordCandidate.letters
The letters in this word
|
protected List<LetterCandidate> |
LineCandidate.letters |
Modifier and Type | Method and Description |
---|---|
protected static List<LetterCandidate> |
LetterCandidate.findLetters(List<ConnectedComponent> components,
FImage swt,
FImage image,
SWTTextDetector.Options options)
Filter the components to find likely letter candidates.
|
List<LetterCandidate> |
SWTTextDetector.getLetters()
Get the unfiltered detected characters.
|
List<LetterCandidate> |
WordCandidate.getLetters()
Get the letters within this word.
|
List<LetterCandidate> |
LineCandidate.getLetters()
Get the letters corresponding to this line.
|
Modifier and Type | Method and Description |
---|---|
static Rectangle |
LetterCandidate.computeBounds(List<LetterCandidate> letters)
Compute the regular bounding rectangle of the given list of letter
candidates
|
protected static List<LineCandidate> |
LineCandidate.extractLines(List<LetterCandidate> letters,
SWTTextDetector.Options options)
Computes lines of text by merging pairs of characters that have similar
directions.
|