Class DetectorResult
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
BitMatrixpoints
ResultPoint[]
Properties
Bits
the detected bits
public BitMatrix Bits { get; }
Property Value
Points
the pixel points where the result is found
public ResultPoint[] Points { get; }