Class: Passport720Rois

Inherits:
PassportRois show all
Defined in:
lib/rois/passport/passport_720/passport_720_rois.rb

Overview

Adds to or modifies the Passport ROIs with Passport 720p-specific ROIs.

Instance Attribute Summary

Attributes inherited from Rois

#black, #color, #image, #text, #video

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Passport720Rois

Public: Initializes Passport720Rois. NOT FOR USE IN TESTS.



13
14
15
16
17
18
19
20
21
# File 'lib/rois/passport/passport_720/passport_720_rois.rb', line 13

def initialize(*args)
  super(*args)
  # Add Rois common to all Passport720 here
  @black = Passport720BlackRois.new(@dut)
  @text = Passport720TextRois.new(@dut)
  @image = Passport720ImageRois.new(@dut)
  @color = Passport720ColorRois.new(@dut)
  @video = Passport720VideoRois.new(@dut)
end