Class: OdnRois

Inherits:
StbRois show all
Defined in:
lib/rois/stb/odn/odn_rois.rb

Overview

Adds to or modifies the Stb ROIs with Odn-specific ROIs.

Direct Known Subclasses

Odn1080Rois, Odn720Rois

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ OdnRois

Public: Initializes OdnRois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Odn here
  @black = OdnBlackRois.new(@dut)
  @text = OdnTextRois.new(@dut)
  @image = OdnImageRois.new(@dut)
  @color = OdnColorRois.new(@dut)
  @video = OdnVideoRois.new(@dut)
end