/*
* Copyright 2010 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using ZXing.Common;
namespace ZXing.Aztec.Internal
{
///
/// The class contains all information about the Aztec code which was found
///
public class AztecDetectorResult : DetectorResult
{
///
/// Gets a value indicating whether this Aztec code is compact.
///
///
/// true if compact; otherwise, false.
///
public bool Compact { get; private set; }
///
/// Gets the nb datablocks.
///
public int NbDatablocks { get; private set; }
///
/// Gets the nb layers.
///
public int NbLayers { get; private set; }
///
/// Initializes a new instance of the class.
///
/// The bits.
/// The points.
/// if set to true [compact].
/// The nb datablocks.
/// The nb layers.
public AztecDetectorResult(BitMatrix bits,
ResultPoint[] points,
bool compact,
int nbDatablocks,
int nbLayers)
: base(bits, points)
{
Compact = compact;
NbDatablocks = nbDatablocks;
NbLayers = nbLayers;
}
}
}