Uses of Class
com.google.zxing.common.DecoderResult
-
-
Uses of DecoderResult in com.google.zxing.aztec.decoder
Methods in com.google.zxing.aztec.decoder that return DecoderResult Modifier and Type Method Description DecoderResult
Decoder. decode(AztecDetectorResult detectorResult)
-
Uses of DecoderResult in com.google.zxing.datamatrix.decoder
Methods in com.google.zxing.datamatrix.decoder that return DecoderResult Modifier and Type Method Description (package private) static DecoderResult
DecodedBitStreamParser. decode(byte[] bytes)
DecoderResult
Decoder. decode(boolean[][] image)
Convenience method that can decode a Data Matrix Code represented as a 2D array of booleans.DecoderResult
Decoder. decode(BitMatrix bits)
Decodes a Data Matrix Code represented as aBitMatrix
. -
Uses of DecoderResult in com.google.zxing.maxicode.decoder
Methods in com.google.zxing.maxicode.decoder that return DecoderResult Modifier and Type Method Description (package private) static DecoderResult
DecodedBitStreamParser. decode(byte[] bytes, int mode)
DecoderResult
Decoder. decode(BitMatrix bits)
DecoderResult
Decoder. decode(BitMatrix bits, java.util.Map<DecodeHintType,?> hints)
-
Uses of DecoderResult in com.google.zxing.pdf417.decoder
Methods in com.google.zxing.pdf417.decoder that return DecoderResult Modifier and Type Method Description private static DecoderResult
PDF417ScanningDecoder. createDecoderResult(DetectionResult detectionResult)
private static DecoderResult
PDF417ScanningDecoder. createDecoderResultFromAmbiguousValues(int ecLevel, int[] codewords, int[] erasureArray, int[] ambiguousIndexes, int[][] ambiguousIndexValues)
This method deals with the fact, that the decoding process doesn't always yield a single most likely value.(package private) static DecoderResult
DecodedBitStreamParser. decode(int[] codewords, java.lang.String ecLevel)
static DecoderResult
PDF417ScanningDecoder. decode(BitMatrix image, ResultPoint imageTopLeft, ResultPoint imageBottomLeft, ResultPoint imageTopRight, ResultPoint imageBottomRight, int minCodewordWidth, int maxCodewordWidth)
private static DecoderResult
PDF417ScanningDecoder. decodeCodewords(int[] codewords, int ecLevel, int[] erasures)
-
Uses of DecoderResult in com.google.zxing.qrcode.decoder
Methods in com.google.zxing.qrcode.decoder that return DecoderResult Modifier and Type Method Description (package private) static DecoderResult
DecodedBitStreamParser. decode(byte[] bytes, Version version, ErrorCorrectionLevel ecLevel, java.util.Map<DecodeHintType,?> hints)
DecoderResult
Decoder. decode(boolean[][] image)
DecoderResult
Decoder. decode(boolean[][] image, java.util.Map<DecodeHintType,?> hints)
Convenience method that can decode a QR Code represented as a 2D array of booleans.DecoderResult
Decoder. decode(BitMatrix bits)
DecoderResult
Decoder. decode(BitMatrix bits, java.util.Map<DecodeHintType,?> hints)
Decodes a QR Code represented as aBitMatrix
.private DecoderResult
Decoder. decode(BitMatrixParser parser, java.util.Map<DecodeHintType,?> hints)
-