This class attempts to find finder patterns in a QR Code. Finder patterns are the square /// markers at three corners of a QR Code.
/// ///This class is thread-safe but not reentrant. Each thread must allocate its own object. /// /// @author Sean Owen ///
Creates a finder that will search the image for three finder patterns.
///After a horizontal scan finds a potential finder pattern, this method /// "cross-checks" by scanning down vertically through the center of the possible /// finder pattern to see if the same proportion is detected.
///Like
This is called when a horizontal scan finds a possible alignment pattern. It will /// cross check with a vertical scan, and if successful, will, ah, cross-cross-check /// with another horizontal scan. This is needed primarily to locate the real horizontal /// center of the pattern in cases of extreme skew.
/// ///If that succeeds the finder pattern location is added to a list that tracks /// the number of times each location has been nearly-matched as a finder pattern. /// Each additional find is more evidence that the location is in fact a finder /// pattern center ///
Orders by furthest from average
///Orders by