Class: RTesseract::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/rtesseract/command.rb

Constant Summary collapse

FIXED =
%i[command psm oem lang tessdata_dir user_words user_patterns config_file].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, output, errors, options) ⇒ Command

Returns a new instance of Command.



7
8
9
10
11
12
13
# File 'lib/rtesseract/command.rb', line 7

def initialize(source, output, errors, options)
  @source = source
  @output = output
  @options = options
  @errors = errors
  @full_command = [options.command, @source, @output]
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



5
6
7
# File 'lib/rtesseract/command.rb', line 5

def options
  @options
end

Instance Method Details

#add_option(*args) ⇒ Object



30
31
32
33
34
# File 'lib/rtesseract/command.rb', line 30

def add_option(*args)
  return unless args.last

  @full_command << args.map(&:to_s)
end

#full_commandObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/rtesseract/command.rb', line 15

def full_command
  add_option('--psm', options.psm)
  add_option('--oem', options.oem)
  add_option('-l', options.lang)
  add_option('--tessdata_dir', options.tessdata_dir)
  add_option('--user_words', options.user_words)
  add_option('--user_patterns', options.user_patterns)

  other_configs

  add_option(options.config_file)

  @full_command
end

#other_configsObject



36
37
38
39
40
41
42
# File 'lib/rtesseract/command.rb', line 36

def other_configs
  @options.to_h.map do |key, value|
    next if FIXED.include?(key)

    add_option('-c', "#{key}=#{value}")
  end
end

#runObject

Raises:



44
45
46
47
48
49
50
51
52
# File 'lib/rtesseract/command.rb', line 44

def run
  output, error, status = Open3.capture3(*full_command.flatten)

  @errors.push(error)

  return output if status.success?

  raise RTesseract::Error, error
end