Uses of Class
com.google.zxing.ResultPoint

Packages that use ResultPoint
com.google.zxing   
com.google.zxing.aztec   
com.google.zxing.common   
com.google.zxing.common.detector   
com.google.zxing.oned.rss   
com.google.zxing.qrcode.detector   
 

Uses of ResultPoint in com.google.zxing
 

Methods in com.google.zxing that return ResultPoint
 ResultPoint[] Result.getResultPoints()
           
 

Methods in com.google.zxing with parameters of type ResultPoint
 void Result.addResultPoints(ResultPoint[] newPoints)
           
static float ResultPoint.distance(ResultPoint pattern1, ResultPoint pattern2)
           
 void ResultPointCallback.foundPossibleResultPoint(ResultPoint point)
           
static void ResultPoint.orderBestPatterns(ResultPoint[] patterns)
          Orders an array of three ResultPoints in an order [A,B,C] such that AB < AC and BC < AC and the angle between BC and BA is less than 180 degrees.
 

Constructors in com.google.zxing with parameters of type ResultPoint
Result(String text, byte[] rawBytes, ResultPoint[] resultPoints, BarcodeFormat format)
           
Result(String text, byte[] rawBytes, ResultPoint[] resultPoints, BarcodeFormat format, long timestamp)
           
 

Uses of ResultPoint in com.google.zxing.aztec
 

Constructors in com.google.zxing.aztec with parameters of type ResultPoint
AztecDetectorResult(BitMatrix bits, ResultPoint[] points, boolean compact, int nbDatablocks, int nbLayers)
           
 

Uses of ResultPoint in com.google.zxing.common
 

Methods in com.google.zxing.common that return ResultPoint
 ResultPoint[] DetectorResult.getPoints()
           
 

Constructors in com.google.zxing.common with parameters of type ResultPoint
DetectorResult(BitMatrix bits, ResultPoint[] points)
           
 

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

Methods in com.google.zxing.common.detector that return ResultPoint
 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.
 

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

Methods in com.google.zxing.oned.rss that return ResultPoint
 ResultPoint[] FinderPattern.getResultPoints()
           
 

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

Subclasses of ResultPoint in com.google.zxing.qrcode.detector
 class AlignmentPattern
          Encapsulates an alignment pattern, which are the smaller square patterns found in all but the simplest QR Codes.
 class FinderPattern
          Encapsulates a finder pattern, which are the three square patterns found in the corners of QR Codes.
 

Methods in com.google.zxing.qrcode.detector with parameters of type ResultPoint
protected  float Detector.calculateModuleSize(ResultPoint topLeft, ResultPoint topRight, ResultPoint bottomLeft)
          Computes an average estimated module size based on estimated derived from the positions of the three finder patterns.
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.
static PerspectiveTransform Detector.createTransform(ResultPoint topLeft, ResultPoint topRight, ResultPoint bottomLeft, ResultPoint alignmentPattern, int dimension)
           
 



Copyright © 2007-2012. All Rights Reserved.