public abstract class GridSampler extends Object
setGridSampler(GridSampler)
with an instance of a class which implements this interface.Constructor and Description |
---|
GridSampler() |
Modifier and Type | Method and Description |
---|---|
protected static void |
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.
|
static GridSampler |
getInstance() |
abstract BitMatrix |
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.
|
abstract BitMatrix |
sampleGrid(BitMatrix image,
int dimensionX,
int dimensionY,
PerspectiveTransform transform) |
static void |
setGridSampler(GridSampler newGridSampler)
Sets the implementation of GridSampler used by the library.
|
public static void setGridSampler(GridSampler newGridSampler)
newGridSampler
- The platform-specific object to install.public static GridSampler getInstance()
public abstract BitMatrix 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) throws NotFoundException
image
- image to sampledimensionX
- width of BitMatrix
to sample from imagedimensionY
- height of BitMatrix
to sample from imagep1ToX
- point 1 preimage Xp1ToY
- point 1 preimage Yp2ToX
- point 2 preimage Xp2ToY
- point 2 preimage Yp3ToX
- point 3 preimage Xp3ToY
- point 3 preimage Yp4ToX
- point 4 preimage Xp4ToY
- point 4 preimage Yp1FromX
- point 1 image Xp1FromY
- point 1 image Yp2FromX
- point 2 image Xp2FromY
- point 2 image Yp3FromX
- point 3 image Xp3FromY
- point 3 image Yp4FromX
- point 4 image Xp4FromY
- point 4 image YBitMatrix
representing a grid of points sampled from the image within a region
defined by the "from" parametersNotFoundException
- if image can't be sampled, for example, if the transformation defined
by the given points is invalid or results in sampling outside the image boundariespublic abstract BitMatrix sampleGrid(BitMatrix image, int dimensionX, int dimensionY, PerspectiveTransform transform) throws NotFoundException
NotFoundException
protected static void checkAndNudgePoints(BitMatrix image, float[] points) throws NotFoundException
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.
This method will actually "nudge" the endpoints back onto the image if they are found to be barely (less than 1 pixel) off the image. This accounts for imperfect detection of finder patterns in an image where the QR Code runs all the way to the image border.
For efficiency, the method will check points from either end of the line until one is found to be within the image. Because the set of points are assumed to be linear, this is valid.
image
- image into which the points should mappoints
- actual points in x1,y1,...,xn,yn formNotFoundException
- if an endpoint is lies outside the image boundariesCopyright © 2007–2024. All rights reserved.