PageIteratorGetBaseLine Method |
http://www.emgu.com
Returns the baseline of the current object at the given level. The baseline is the line that passes through (x1, y1) and (x2, y2). WARNING: with vertical text, baselines may be vertical! Returns null if there is no baseline at the current position.
Namespace:
Emgu.CV.OCR
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic Nullable<LineSegment2D> GetBaseLine(
PageIteratorLevel level
)
Public Function GetBaseLine (
level As PageIteratorLevel
) As Nullable(Of LineSegment2D)
public:
Nullable<LineSegment2D> GetBaseLine(
PageIteratorLevel level
)
member GetBaseLine :
level : PageIteratorLevel -> Nullable<LineSegment2D>
Parameters
- level
- Type: Emgu.CV.OCRPageIteratorLevel
Page iterator level
Return Value
Type:
NullableLineSegment2DThe baseline of the current object at the given level
See Also