Class: Mdn720Rois

Inherits:
MdnRois show all
Defined in:
lib/rois/mdn/mdn_720/mdn_720_rois.rb

Overview

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

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Mdn720Rois

Public: Initializes Mdn720Rois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Mdn720 here
  @black = Mdn720BlackRois.new(@dut)
  @color = Mdn720ColorRois.new(@dut)
  @image = Mdn720ImageRois.new(@dut)
  @text = Mdn720TextRois.new(@dut)
  @video = Mdn720VideoRois.new(@dut)

end