afa2d89f05a769f5242b5d29192d7d63df8fd1db
[zxing.git] / cpp / core / src / zxing / qrcode / detector / FinderPatternFinder.h
1 #ifndef __FINDER_PATTERN_FINDER_H__
2 #define __FINDER_PATTERN_FINDER_H__
3
4 /*
5  *  FinderPatternFinder.h
6  *  zxing
7  *
8  *  Copyright 2010 ZXing authors All rights reserved.
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  */
22
23 #include <zxing/qrcode/detector/FinderPattern.h>
24 #include <zxing/qrcode/detector/FinderPatternInfo.h>
25 #include <zxing/common/Counted.h>
26 #include <zxing/common/BitMatrix.h>
27 #include <vector>
28
29 namespace zxing {
30 namespace qrcode {
31
32 class FinderPatternFinder {
33 private:
34   static int CENTER_QUORUM;
35   static int MIN_SKIP;
36   static int MAX_MODULES;
37
38   Ref<BitMatrix> image_;
39   std::vector<Ref<FinderPattern> > possibleCenters_;
40   bool hasSkipped_;
41
42   /** stateCount must be int[5] */
43   static float centerFromEnd(int* stateCount, int end);
44   static bool foundPatternCross(int* stateCount);
45
46   float crossCheckVertical(size_t startI, size_t centerJ, int maxCount, int originalStateCountTotal);
47   float crossCheckHorizontal(size_t startJ, size_t centerI, int maxCount, int originalStateCountTotal);
48
49   /** stateCount must be int[5] */
50   bool handlePossibleCenter(int* stateCount, size_t i, size_t j);
51   int findRowSkip();
52   bool haveMultiplyConfirmedCenters();
53   std::vector<Ref<FinderPattern> > selectBestPatterns();
54   static std::vector<Ref<FinderPattern> > orderBestPatterns(std::vector<Ref<FinderPattern> > patterns);
55
56 public:
57   static float distance(Ref<ResultPoint> p1, Ref<ResultPoint> p2);
58   FinderPatternFinder(Ref<BitMatrix> image);
59   Ref<FinderPatternInfo> find();
60 };
61 }
62 }
63
64 #endif // __FINDER_PATTERN_FINDER_H__