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
36
37
38
|
# File 'lib/asposeocrjava/OCR/gettextparthierarchyoftext.rb', line 3
def initialize()
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
ocr_engine = Rjb::import('com.aspose.ocr.OcrEngine').new
ocr_engine.setImage(Rjb::import('com.aspose.ocr.ImageStream').fromFile(data_dir + 'ocr.png'))
if ocr_engine.process()
first_block = ocr_engine.getText().getPartsInfo()[0]
lines_of_first_block = first_block.getChildren()
first_line = lines_of_first_block[0]
puts first_line.getLevel()
first_word = first_line.getChildren()[0]
puts first_word.getLevel()
first_character = first_word.getChildren()[0]
puts first_character.getLevel()
end
end
|