Class: Sara720Rois

Inherits:
SaraRois show all
Defined in:
lib/rois/sara/sara_720/sara_720_rois.rb

Overview

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

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Sara720Rois

Public: Initializes Sara720Rois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Sara720 here
  @black = Sara720BlackRois.new(@dut)
  @color = Sara720ColorRois.new(@dut)
  @image = Sara720ImageRois.new(@dut)
  @text = Sara720TextRois.new(@dut)
  @video = Sara720VideoRois.new(@dut)

end