Table of Contents

Class DetectorResult

Namespace
ZXing.Common
Assembly
zxing.dll

Encapsulates the result of detecting a barcode in an image. This includes the raw matrix of black/white pixels corresponding to the barcode, and possibly points of interest in the image, like the location of finder patterns or corners of the barcode in the image.

public class DetectorResult
Inheritance
DetectorResult
Derived
Inherited Members

Constructors

DetectorResult(BitMatrix, ResultPoint[])

initializing constructor

public DetectorResult(BitMatrix bits, ResultPoint[] points)

Parameters

bits BitMatrix
points ResultPoint[]

Properties

Bits

the detected bits

public BitMatrix Bits { get; }

Property Value

BitMatrix

Points

the pixel points where the result is found

public ResultPoint[] Points { get; }

Property Value

ResultPoint[]