Class: MdnRois

Inherits:
Rois show all
Defined in:
lib/rois/mdn/mdn_rois.rb

Overview

Adds to or modifies the base ROIs with Mdn-specific ROIs.

Direct Known Subclasses

Mdn1080Rois, Mdn720Rois

Instance Attribute Summary

Attributes inherited from Rois

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

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ MdnRois

Public: Initializes MdnRois. NOT FOR USE IN TESTS.



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

def initialize(*args)
  super(*args)
  # Add Rois common to all Mdns here
  @black = MdnBlackRois.new(@dut)
  @color = MdnColorRois.new(@dut)
  @image = MdnImageRois.new(@dut)
  @text = MdnTextRois.new(@dut)
  @video = MdnVideoRois.new(@dut)

end