mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 06:24:06 -08:00
7616c4d06d
git-svn-id: https://zxing.googlecode.com/svn/trunk@2558 59b500cc-1b3d-0410-9834-0bbf25fbcc57
170 lines
7 KiB
C#
Executable file
170 lines
7 KiB
C#
Executable file
/*
|
|
* Copyright 2007 ZXing authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
namespace com.google.zxing.common
|
|
{
|
|
|
|
using NotFoundException = com.google.zxing.NotFoundException;
|
|
|
|
/// <summary>
|
|
/// 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 <seealso cref="#setGridSampler(GridSampler)"/>
|
|
/// with an instance of a class which implements this interface.
|
|
///
|
|
/// @author Sean Owen
|
|
/// </summary>
|
|
public abstract class GridSampler
|
|
{
|
|
|
|
private static GridSampler gridSampler = new DefaultGridSampler();
|
|
|
|
/// <summary>
|
|
/// Sets the implementation of GridSampler used by the library. One global
|
|
/// instance is stored, which may sound problematic. But, the implementation provided
|
|
/// ought to be appropriate for the entire platform, and all uses of this library
|
|
/// in the whole lifetime of the JVM. For instance, an Android activity can swap in
|
|
/// an implementation that takes advantage of native platform libraries.
|
|
/// </summary>
|
|
/// <param name="newGridSampler"> The platform-specific object to install. </param>
|
|
public static GridSampler GridSampler2
|
|
{
|
|
set
|
|
{
|
|
gridSampler = value;
|
|
}
|
|
}
|
|
|
|
/// <returns> the current implementation of GridSampler </returns>
|
|
public static GridSampler Instance
|
|
{
|
|
get
|
|
{
|
|
return gridSampler;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Samples an image for a rectangular matrix of bits of the given dimension. </summary>
|
|
/// <param name="image"> image to sample </param>
|
|
/// <param name="dimensionX"> width of <seealso cref="BitMatrix"/> to sample from image </param>
|
|
/// <param name="dimensionY"> height of <seealso cref="BitMatrix"/> to sample from image </param>
|
|
/// <returns> <seealso cref="BitMatrix"/> representing a grid of points sampled from the image within a region
|
|
/// defined by the "from" parameters </returns>
|
|
/// <exception cref="NotFoundException"> 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 boundaries </exception>
|
|
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
|
|
//ORIGINAL LINE: 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 com.google.zxing.NotFoundException;
|
|
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);
|
|
|
|
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
|
|
//ORIGINAL LINE: public abstract BitMatrix sampleGrid(BitMatrix image, int dimensionX, int dimensionY, PerspectiveTransform transform) throws com.google.zxing.NotFoundException;
|
|
public abstract BitMatrix sampleGrid(BitMatrix image, int dimensionX, int dimensionY, PerspectiveTransform transform);
|
|
|
|
/// <summary>
|
|
/// <p>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.</p>
|
|
///
|
|
/// <p>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.</p>
|
|
///
|
|
/// <p>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.</p>
|
|
/// </summary>
|
|
/// <param name="image"> image into which the points should map </param>
|
|
/// <param name="points"> actual points in x1,y1,...,xn,yn form </param>
|
|
/// <exception cref="NotFoundException"> if an endpoint is lies outside the image boundaries </exception>
|
|
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
|
|
//ORIGINAL LINE: protected static void checkAndNudgePoints(BitMatrix image, float[] points) throws com.google.zxing.NotFoundException
|
|
protected internal static void checkAndNudgePoints(BitMatrix image, float[] points)
|
|
{
|
|
int width = image.Width;
|
|
int height = image.Height;
|
|
// Check and nudge points from start until we see some that are OK:
|
|
bool nudged = true;
|
|
for (int offset = 0; offset < points.Length && nudged; offset += 2)
|
|
{
|
|
int x = (int) points[offset];
|
|
int y = (int) points[offset + 1];
|
|
if (x < -1 || x > width || y < -1 || y > height)
|
|
{
|
|
throw NotFoundException.NotFoundInstance;
|
|
}
|
|
nudged = false;
|
|
if (x == -1)
|
|
{
|
|
points[offset] = 0.0f;
|
|
nudged = true;
|
|
}
|
|
else if (x == width)
|
|
{
|
|
points[offset] = width - 1;
|
|
nudged = true;
|
|
}
|
|
if (y == -1)
|
|
{
|
|
points[offset + 1] = 0.0f;
|
|
nudged = true;
|
|
}
|
|
else if (y == height)
|
|
{
|
|
points[offset + 1] = height - 1;
|
|
nudged = true;
|
|
}
|
|
}
|
|
// Check and nudge points from end:
|
|
nudged = true;
|
|
for (int offset = points.Length - 2; offset >= 0 && nudged; offset -= 2)
|
|
{
|
|
int x = (int) points[offset];
|
|
int y = (int) points[offset + 1];
|
|
if (x < -1 || x > width || y < -1 || y > height)
|
|
{
|
|
throw NotFoundException.NotFoundInstance;
|
|
}
|
|
nudged = false;
|
|
if (x == -1)
|
|
{
|
|
points[offset] = 0.0f;
|
|
nudged = true;
|
|
}
|
|
else if (x == width)
|
|
{
|
|
points[offset] = width - 1;
|
|
nudged = true;
|
|
}
|
|
if (y == -1)
|
|
{
|
|
points[offset + 1] = 0.0f;
|
|
nudged = true;
|
|
}
|
|
else if (y == height)
|
|
{
|
|
points[offset + 1] = height - 1;
|
|
nudged = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
} |