Class: Mdn1080Rois

Inherits:
MdnRois show all
Defined in:
lib/rois/mdn/mdn_1080/mdn_1080_rois.rb

Overview

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

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Mdn1080Rois

Public: Initializes Mdn1080Rois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Mdn1080 here
  @black = Mdn1080BlackRois.new(@dut)
  @color = Mdn1080ColorRois.new(@dut)
  @image = Mdn1080ImageRois.new(@dut)
  @text = Mdn1080TextRois.new(@dut)
  @video = Mdn1080VideoRois.new(@dut)

end