Samples an image for a rectangular matrix of bits of the given dimension. The sampling transformation is determined by the coordinates of 4 points, in the original and transformed image space.
image to sample
width of BitMatrix to sample from image
height of BitMatrix to sample from image
point 1 preimage X
point 1 preimage Y
point 2 preimage X
point 2 preimage Y
point 3 preimage X
point 3 preimage Y
point 4 preimage X
point 4 preimage Y
point 1 image X
point 1 image Y
point 2 image X
point 2 image Y
point 3 image X
point 3 image Y
point 4 image X
point 4 image Y
BitMatrix representing a grid of points sampled from the image within a region defined by the "from" parameters
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 into which the points should map
actual points in x1,y1,...,xn,yn form
Generated using TypeDoc
Implementations of this class can, given locations of finder patterns for a QR code in an image, sample the right points in the image to reconstruct the QR code, accounting for perspective distortion. It is abstracted since it is relatively expensive and should be allowed to take advantage of platform-specific optimized implementations, like Sun's Java Advanced Imaging library, but which may not be available in other environments such as J2ME, and vice versa.
The implementation used can be controlled by calling {@link #setGridSampler(GridSampler)} with an instance of a class which implements this interface.
Sean Owen