Notice: This documentation is archived. For the latest product features and documentation, please visit Dynamsoft Capture Vision Documentation.
CLongLinesUnit Class
The CLongLinesUnit class represents an intermediate result unit whose type is long lines. Short line segments that are located in the same line are extended and merged to form a long line segment.
Definition
Namespace: dynamsoft::ddn::intermediate_results
Assembly: DynamsoftDocumentNormalizer
class CLongLinesUnit: CIntermediateResultUnit
Inheritance: CIntermediateResultUnit -> CLongLinesUnit
Methods
Method | Description |
---|---|
GetCount |
Gets the count of LongLine objects in current object. |
GetLongLine |
Gets a LongLine object from current object by specifying a index. |
GetCount
Gets the count of LongLine objects in current object.
int GetCount()
Return Value
The count of LongLine objects in current object.
GetLongLine
Gets a LongLine object from current object by specifying a index.
const CLineSegment* GetLongLine(int index) const = 0;
Parameters
[in] index
The index of the LongLine object.
Return Value
Returns the LongLine object.
See Also