Method: OdnRois#initialize

Defined in:
lib/rois/stb/odn/odn_rois.rb

#initialize(*args) ⇒ OdnRois

Public: Initializes OdnRois. NOT FOR USE IN TESTS.



13
14
15
16
17
18
19
20
21
# File 'lib/rois/stb/odn/odn_rois.rb', line 13

def initialize(*args)
  super(*args)
  # Add Rois common to all Odn here

  @black = OdnBlackRois.new(@dut)
  @text = OdnTextRois.new(@dut)
  @image = OdnImageRois.new(@dut)
  @color = OdnColorRois.new(@dut)
  @video = OdnVideoRois.new(@dut)
end