Class: Iguide720Rois

Inherits:
IguideRois show all
Defined in:
lib/rois/stb/iguide/iguide_720/iguide_720_rois.rb

Overview

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

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Iguide720Rois

Public: Initializes Iguide720Rois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Iguide720 here
  @black = Iguide720BlackRois.new(@dut)
  @text = Iguide720TextRois.new(@dut)
  @image = Iguide720ImageRois.new(@dut)
  @color = Iguide720ColorRois.new(@dut)
  @video = Iguide720VideoRois.new(@dut)
end