Class: SaraRois

Inherits:
Rois show all
Defined in:
lib/rois/sara/sara_rois.rb

Overview

Adds to or modifies the base ROIs with Sara-specific ROIs.

Direct Known Subclasses

Sara1080Rois, Sara720Rois

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ SaraRois

Public: Initializes SaraRois. NOT FOR USE IN TESTS.



15
16
17
18
19
20
21
22
23
24
# File 'lib/rois/sara/sara_rois.rb', line 15

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

  @black = SaraBlackRois.new(@dut)
  @color = SaraColorRois.new(@dut)
  @image = SaraImageRois.new(@dut)
  @text = SaraTextRois.new(@dut)
  @video = SaraVideoRois.new(@dut)

end