Table of contents

LayoutAnalysisParameter

The LayoutAnalysisParameter class holds input parameters to guide the layout analysis.

Definition

Namespace: Dynamsoft.Utility

public class LayoutAnalysisParameter

Properties

Property Type Description
pattern LayoutPattern Desired layout pattern.
axes LayoutAxis[] Configuration for Primary (0) and Secondary (1) axes.
inputImageWidth int Width of the source image in pixels.
inputImageHeight int Height of the source image in pixels.

pattern

Desired layout pattern. Use LP_UNKNOWN for auto-detection.

public LayoutPattern pattern = LayoutPattern.LP_UNKNOWN;

See Also

LayoutPattern

axes

Configuration for Primary (axis 0) and Secondary (axis 1) axes.

public LayoutAxis[] axes;

See Also

LayoutAxis

inputImageWidth

Width of the source image in pixels. When provided, prevents inferred quads from extending beyond the image bounds. Default: 0 (no boundary check).

public int inputImageWidth = 0;

inputImageHeight

Height of the source image in pixels. When provided, prevents inferred quads from extending beyond the image bounds. Default: 0 (no boundary check).

public int inputImageHeight = 0;

This page is compatible for: