Table of Contents

Class DetectionResult

Namespace
ZXing.PDF417.Internal
Assembly
zxing.dll
public class DetectionResult
Inheritance
DetectionResult
Inherited Members

Constructors

DetectionResult(BarcodeMetadata, BoundingBox)

initializing constructor

public DetectionResult(BarcodeMetadata metadata, BoundingBox box)

Parameters

metadata BarcodeMetadata
box BoundingBox

Properties

Box

bounding box of the detected result

public BoundingBox Box { get; }

Property Value

BoundingBox

ColumnCount

column count

public int ColumnCount { get; }

Property Value

int

DetectionResultColumns

result columns

public DetectionResultColumn[] DetectionResultColumns { get; set; }

Property Value

DetectionResultColumn[]

ErrorCorrectionLevel

error correction level

public int ErrorCorrectionLevel { get; }

Property Value

int

Metadata

metadata which are found

public BarcodeMetadata Metadata { get; }

Property Value

BarcodeMetadata

RowCount

row count

public int RowCount { get; }

Property Value

int

Methods

ToString()

Returns a string that represents the current DetectionResult.

public override string ToString()

Returns

string

A string that represents the current DetectionResult.

getDetectionResultColumns()

Returns the DetectionResult Columns. This does a fair bit of calculation, so call it sparingly.

public DetectionResultColumn[] getDetectionResultColumns()

Returns

DetectionResultColumn[]

The detection result columns.