Class: Odn720SamsungRois

Inherits:
Odn720Rois show all
Defined in:
lib/rois/stb/odn/odn_720/odn_720_samsung/odn_720_samsung_rois.rb

Overview

Adds to or modifies the Odn ROIs with Odn720 Samsung specific ROIs.

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Odn720SamsungRois

Public: Initializes Odn720SamsungRois. NOT FOR USE IN TESTS.



13
14
15
16
17
18
19
20
21
# File 'lib/rois/stb/odn/odn_720/odn_720_samsung/odn_720_samsung_rois.rb', line 13

def initialize(*args)
  super(*args)
  # Add Rois common to all Odn720 here
  @black = Odn720SamsungBlackRois.new(@dut)
  @text = Odn720SamsungTextRois.new(@dut)
  @image = Odn720SamsungImageRois.new(@dut)
  @color = Odn720SamsungColorRois.new(@dut)
  @video = Odn720SamsungVideoRois.new(@dut)
end