Uses of Class
com.google.zxing.NotFoundException

Packages that use NotFoundException
com.google.zxing   
com.google.zxing.aztec   
com.google.zxing.aztec.detector   
com.google.zxing.common   
com.google.zxing.common.detector   
com.google.zxing.datamatrix   
com.google.zxing.datamatrix.detector   
com.google.zxing.maxicode   
com.google.zxing.multi   
com.google.zxing.multi.qrcode   
com.google.zxing.multi.qrcode.detector   
com.google.zxing.oned   
com.google.zxing.oned.rss   
com.google.zxing.oned.rss.expanded   
com.google.zxing.oned.rss.expanded.decoders   
com.google.zxing.pdf417   
com.google.zxing.pdf417.detector   
com.google.zxing.qrcode   
com.google.zxing.qrcode.detector   
 

Uses of NotFoundException in com.google.zxing
 

Methods in com.google.zxing that return NotFoundException
static NotFoundException NotFoundException.getNotFoundInstance()
           
 

Methods in com.google.zxing that throw NotFoundException
 Result Reader.decode(BinaryBitmap image)
          Locates and decodes a barcode in some format within an image.
 Result MultiFormatReader.decode(BinaryBitmap image)
          This version of decode honors the intent of Reader.decode(BinaryBitmap) in that it passes null as a hint to the decoders.
 Result Reader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
          Locates and decodes a barcode in some format within an image.
 Result MultiFormatReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
          Decode an image using the hints provided.
 Result MultiFormatReader.decodeWithState(BinaryBitmap image)
          Decode an image using the state set up by calling setHints() previously.
 BitMatrix BinaryBitmap.getBlackMatrix()
          Converts a 2D array of luminance data to 1 bit.
abstract  BitMatrix Binarizer.getBlackMatrix()
          Converts a 2D array of luminance data to 1 bit data.
 BitArray BinaryBitmap.getBlackRow(int y, BitArray row)
          Converts one row of luminance data to 1 bit data.
abstract  BitArray Binarizer.getBlackRow(int y, BitArray row)
          Converts one row of luminance data to 1 bit data.
 

Uses of NotFoundException in com.google.zxing.aztec
 

Methods in com.google.zxing.aztec that throw NotFoundException
 Result AztecReader.decode(BinaryBitmap image)
          Locates and decodes a Data Matrix code in an image.
 Result AztecReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.aztec.detector
 

Methods in com.google.zxing.aztec.detector that throw NotFoundException
 AztecDetectorResult Detector.detect()
          Detects an Aztec Code in an image.
 

Uses of NotFoundException in com.google.zxing.common
 

Methods in com.google.zxing.common that throw NotFoundException
protected static void GridSampler.checkAndNudgePoints(BitMatrix image, float[] points)
          Checks a set of points that have been transformed to sample points on an image against the image's dimensions to see if the point are even within the image.
 BitMatrix HybridBinarizer.getBlackMatrix()
           
 BitMatrix GlobalHistogramBinarizer.getBlackMatrix()
           
 BitArray GlobalHistogramBinarizer.getBlackRow(int y, BitArray row)
           
abstract  BitMatrix GridSampler.sampleGrid(BitMatrix image, int dimensionX, int dimensionY, float p1ToX, float p1ToY, float p2ToX, float p2ToY, float p3ToX, float p3ToY, float p4ToX, float p4ToY, float p1FromX, float p1FromY, float p2FromX, float p2FromY, float p3FromX, float p3FromY, float p4FromX, float p4FromY)
          Samples an image for a rectangular matrix of bits of the given dimension.
 BitMatrix DefaultGridSampler.sampleGrid(BitMatrix image, int dimensionX, int dimensionY, float p1ToX, float p1ToY, float p2ToX, float p2ToY, float p3ToX, float p3ToY, float p4ToX, float p4ToY, float p1FromX, float p1FromY, float p2FromX, float p2FromY, float p3FromX, float p3FromY, float p4FromX, float p4FromY)
           
abstract  BitMatrix GridSampler.sampleGrid(BitMatrix image, int dimensionX, int dimensionY, PerspectiveTransform transform)
           
 BitMatrix DefaultGridSampler.sampleGrid(BitMatrix image, int dimensionX, int dimensionY, PerspectiveTransform transform)
           
 

Uses of NotFoundException in com.google.zxing.common.detector
 

Methods in com.google.zxing.common.detector that throw NotFoundException
 ResultPoint[] WhiteRectangleDetector.detect()
           Detects a candidate barcode-like rectangular region within an image.
 ResultPoint[] MonochromeRectangleDetector.detect()
          Detects a rectangular region of black and white -- mostly black -- with a region of mostly white, in an image.
 

Constructors in com.google.zxing.common.detector that throw NotFoundException
WhiteRectangleDetector(BitMatrix image)
           
WhiteRectangleDetector(BitMatrix image, int initSize, int x, int y)
           
 

Uses of NotFoundException in com.google.zxing.datamatrix
 

Methods in com.google.zxing.datamatrix that throw NotFoundException
 Result DataMatrixReader.decode(BinaryBitmap image)
          Locates and decodes a Data Matrix code in an image.
 Result DataMatrixReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.datamatrix.detector
 

Methods in com.google.zxing.datamatrix.detector that throw NotFoundException
 DetectorResult Detector.detect()
          Detects a Data Matrix Code in an image.
 

Constructors in com.google.zxing.datamatrix.detector that throw NotFoundException
Detector(BitMatrix image)
           
 

Uses of NotFoundException in com.google.zxing.maxicode
 

Methods in com.google.zxing.maxicode that throw NotFoundException
 Result MaxiCodeReader.decode(BinaryBitmap image)
          Locates and decodes a MaxiCode in an image.
 Result MaxiCodeReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.multi
 

Methods in com.google.zxing.multi that throw NotFoundException
 Result ByQuadrantReader.decode(BinaryBitmap image)
           
 Result ByQuadrantReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 Result[] MultipleBarcodeReader.decodeMultiple(BinaryBitmap image)
           
 Result[] GenericMultipleBarcodeReader.decodeMultiple(BinaryBitmap image)
           
 Result[] MultipleBarcodeReader.decodeMultiple(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 Result[] GenericMultipleBarcodeReader.decodeMultiple(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.multi.qrcode
 

Methods in com.google.zxing.multi.qrcode that throw NotFoundException
 Result[] QRCodeMultiReader.decodeMultiple(BinaryBitmap image)
           
 Result[] QRCodeMultiReader.decodeMultiple(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.multi.qrcode.detector
 

Methods in com.google.zxing.multi.qrcode.detector that throw NotFoundException
 DetectorResult[] MultiDetector.detectMulti(Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.oned
 

Methods in com.google.zxing.oned that throw NotFoundException
 Result UPCAReader.decode(BinaryBitmap image)
           
 Result OneDReader.decode(BinaryBitmap image)
           
 Result UPCAReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 Result OneDReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
protected  int[] UPCEReader.decodeEnd(BitArray row, int endStart)
           
protected  int UPCEReader.decodeMiddle(BitArray row, int[] startRange, StringBuilder result)
           
protected abstract  int UPCEANReader.decodeMiddle(BitArray row, int[] startRange, StringBuilder resultString)
          Subclasses override this to decode the portion of a barcode between the start and end guard patterns.
protected  int UPCAReader.decodeMiddle(BitArray row, int[] startRange, StringBuilder resultString)
           
protected  int EAN8Reader.decodeMiddle(BitArray row, int[] startRange, StringBuilder result)
           
protected  int EAN13Reader.decodeMiddle(BitArray row, int[] startRange, StringBuilder resultString)
           
 Result UPCEANReader.decodeRow(int rowNumber, BitArray row, int[] startGuardRange, Map<DecodeHintType,?> hints)
          Like UPCEANReader.decodeRow(int, BitArray, java.util.Map), but allows caller to inform method about where the UPC/EAN start pattern is found.
 Result UPCAReader.decodeRow(int rowNumber, BitArray row, int[] startGuardRange, Map<DecodeHintType,?> hints)
           
 Result UPCEANReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result UPCAReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
abstract  Result OneDReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
          Attempts to decode a one-dimensional barcode format given a single row of an image.
 Result MultiFormatUPCEANReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result MultiFormatOneDReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result ITFReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result Code93Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result Code39Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result Code128Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 Result CodaBarReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
protected static void OneDReader.recordPattern(BitArray row, int start, int[] counters)
          Records the size of successive runs of white and black pixels in a row, starting at a given point.
protected static void OneDReader.recordPatternInReverse(BitArray row, int start, int[] counters)
           
 

Uses of NotFoundException in com.google.zxing.oned.rss
 

Methods in com.google.zxing.oned.rss that throw NotFoundException
 Result RSS14Reader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
protected static int AbstractRSSReader.parseFinderValue(int[] counters, int[][] finderPatterns)
           
 

Uses of NotFoundException in com.google.zxing.oned.rss.expanded
 

Methods in com.google.zxing.oned.rss.expanded that throw NotFoundException
 Result RSSExpandedReader.decodeRow(int rowNumber, BitArray row, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.oned.rss.expanded.decoders
 

Methods in com.google.zxing.oned.rss.expanded.decoders that throw NotFoundException
abstract  String AbstractExpandedDecoder.parseInformation()
           
 

Uses of NotFoundException in com.google.zxing.pdf417
 

Methods in com.google.zxing.pdf417 that throw NotFoundException
 Result PDF417Reader.decode(BinaryBitmap image)
          Locates and decodes a PDF417 code in an image.
 Result PDF417Reader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.pdf417.detector
 

Methods in com.google.zxing.pdf417.detector that throw NotFoundException
 DetectorResult Detector.detect()
          Detects a PDF417 Code in an image, simply.
 DetectorResult Detector.detect(Map<DecodeHintType,?> hints)
          Detects a PDF417 Code in an image.
 

Uses of NotFoundException in com.google.zxing.qrcode
 

Methods in com.google.zxing.qrcode that throw NotFoundException
 Result QRCodeReader.decode(BinaryBitmap image)
          Locates and decodes a QR code in an image.
 Result QRCodeReader.decode(BinaryBitmap image, Map<DecodeHintType,?> hints)
           
 

Uses of NotFoundException in com.google.zxing.qrcode.detector
 

Methods in com.google.zxing.qrcode.detector that throw NotFoundException
protected static int Detector.computeDimension(ResultPoint topLeft, ResultPoint topRight, ResultPoint bottomLeft, float moduleSize)
          Computes the dimension (number of modules on a size) of the QR Code based on the position of the finder patterns and estimated module size.
 DetectorResult Detector.detect()
          Detects a QR Code in an image, simply.
 DetectorResult Detector.detect(Map<DecodeHintType,?> hints)
          Detects a QR Code in an image, simply.
protected  AlignmentPattern Detector.findAlignmentInRegion(float overallEstModuleSize, int estAlignmentX, int estAlignmentY, float allowanceFactor)
          Attempts to locate an alignment pattern in a limited region of the image, which is guessed to contain it.
protected  DetectorResult Detector.processFinderPatternInfo(FinderPatternInfo info)
           
 



Copyright © 2007-2012. All Rights Reserved.