Class AztecDetectorResult
Extends DetectorResult with more information specific to the Aztec format, like the number of layers and whether it's compact.
public class AztecDetectorResult : DetectorResult
- Inheritance
-
AztecDetectorResult
- Inherited Members
Constructors
AztecDetectorResult(BitMatrix, ResultPoint[], bool, int, int)
Initializes a new instance of the AztecDetectorResult class.
public AztecDetectorResult(BitMatrix bits, ResultPoint[] points, bool compact, int nbDatablocks, int nbLayers)
Parameters
bits
BitMatrixThe bits.
points
ResultPoint[]The points.
compact
boolif set to
true
[compact].nbDatablocks
intThe nb datablocks.
nbLayers
intThe nb layers.
Properties
Compact
Gets a value indicating whether this Aztec code is compact.
public bool Compact { get; }
Property Value
- bool
true
if compact; otherwise,false
.
NbDatablocks
Gets the nb datablocks.
public int NbDatablocks { get; }
Property Value
NbLayers
Gets the nb layers.
public int NbLayers { get; }