Class: Sara1080Rois

Inherits:
SaraRois show all
Defined in:
lib/rois/sara/sara_1080/sara_1080_rois.rb

Overview

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

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Sara1080Rois

Public: Initializes Sara1080Rois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Sara1080 here
  @black = Sara1080BlackRois.new(@dut)
  @color = Sara1080ColorRois.new(@dut)
  @image = Sara1080ImageRois.new(@dut)
  @text = Sara1080TextRois.new(@dut)
  @video = Sara1080VideoRois.new(@dut)

end