Class: Xberg::DetectionResult
- Inherits:
-
Object
- Object
- Xberg::DetectionResult
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#detections ⇒ Array[LayoutDetection]
readonly
Returns the value of attribute detections.
-
#page_height ⇒ Integer
readonly
Returns the value of attribute page_height.
-
#page_width ⇒ Integer
readonly
Returns the value of attribute page_width.
Instance Method Summary collapse
-
#initialize ⇒ DetectionResult
constructor
A new instance of DetectionResult.
Constructor Details
#initialize ⇒ DetectionResult
Returns a new instance of DetectionResult.
2202 |
# File 'sig/types.rbs', line 2202
def initialize: (page_width: Integer, page_height: Integer, detections: Array[LayoutDetection]) -> void
|
Instance Attribute Details
#detections ⇒ Array[LayoutDetection] (readonly)
Returns the value of attribute detections.
2200 2201 2202 |
# File 'sig/types.rbs', line 2200 def detections @detections end |
#page_height ⇒ Integer (readonly)
Returns the value of attribute page_height.
2199 2200 2201 |
# File 'sig/types.rbs', line 2199 def page_height @page_height end |
#page_width ⇒ Integer (readonly)
Returns the value of attribute page_width.
2198 2199 2200 |
# File 'sig/types.rbs', line 2198 def page_width @page_width end |