LayoutAnalyzer
The LayoutAnalyzer class provides a high-performance layout analysis engine. It analyzes the spatial distribution of quadrilaterals to detect and map structural patterns (Lines or Matrix), with logical grid position mapping and gap-filling inference.
Definition
Namespace: Dynamsoft.Utility
public static class LayoutAnalyzer
Methods
| Method | Description |
|---|---|
Analyze |
Performs layout analysis on an array of quadrilaterals and returns a result set. |
Analyze
Performs layout analysis and returns a result set.
public static LayoutAnalysisResult? Analyze(Quadrilateral[] input, LayoutAnalysisParameter? parameter = null)
Parameters
[in] input Array of input quadrilaterals.
[in] parameter Optional parameters to constrain the analysis.
Return Value
Returns a LayoutAnalysisResult object, or null on failure.
Note: Dispose the returned object after use.
See Also