Class: Iguide1080Rois

Inherits:
IguideRois show all
Defined in:
lib/rois/stb/iguide/iguide_1080/iguide_1080_rois.rb

Overview

Adds to or modifies the Iguide ROIs with Iguide1080-specific ROIs.

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Iguide1080Rois

Public: Initializes Iguide1080Rois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Iguide1080 here
  @black = Iguide1080BlackRois.new(@dut)
  @text = Iguide1080TextRois.new(@dut)
  @image = Iguide1080ImageRois.new(@dut)
  @color = Iguide1080ColorRois.new(@dut)
  @video = Iguide1080VideoRois.new(@dut)
end