|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.google.zxing.qrcode.decoder.Decoder
public final class Decoder
The main class which implements QR Code decoding -- as opposed to locating and extracting the QR Code from an image.
| Constructor Summary | |
|---|---|
Decoder()
|
|
| Method Summary | |
|---|---|
DecoderResult |
decode(BitMatrix bits)
|
DecoderResult |
decode(BitMatrix bits,
Map<DecodeHintType,?> hints)
Decodes a QR Code represented as a BitMatrix. |
DecoderResult |
decode(boolean[][] image)
|
DecoderResult |
decode(boolean[][] image,
Map<DecodeHintType,?> hints)
Convenience method that can decode a QR Code represented as a 2D array of booleans. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Decoder()
| Method Detail |
|---|
public DecoderResult decode(boolean[][] image)
throws ChecksumException,
FormatException
ChecksumException
FormatException
public DecoderResult decode(boolean[][] image,
Map<DecodeHintType,?> hints)
throws ChecksumException,
FormatException
Convenience method that can decode a QR Code represented as a 2D array of booleans. "true" is taken to mean a black module.
image - booleans representing white/black QR Code modules
FormatException - if the QR Code cannot be decoded
ChecksumException - if error correction fails
public DecoderResult decode(BitMatrix bits)
throws ChecksumException,
FormatException
ChecksumException
FormatException
public DecoderResult decode(BitMatrix bits,
Map<DecodeHintType,?> hints)
throws FormatException,
ChecksumException
Decodes a QR Code represented as a BitMatrix. A 1 or "true" is taken to mean a black module.
bits - booleans representing white/black QR Code modules
FormatException - if the QR Code cannot be decoded
ChecksumException - if error correction fails
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||