Issue 505
[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 <zxing/ResultPointCallback.h>
28 #include <vector>
29
30 namespace zxing {
31
32 class DecodeHints;
33
34 namespace qrcode {
35
36 class FinderPatternFinder {
37 private:
38   static int CENTER_QUORUM;
39   static int MIN_SKIP;
40   static int MAX_MODULES;
41
42   Ref<BitMatrix> image_;
43   std::vector<Ref<FinderPattern> > possibleCenters_;
44   bool hasSkipped_;
45
46   Ref<ResultPointCallback> callback_;
47
48   /** stateCount must be int[5] */
49   static float centerFromEnd(int* stateCount, int end);
50   static bool foundPatternCross(int* stateCount);
51
52   float crossCheckVertical(size_t startI, size_t centerJ, int maxCount, int originalStateCountTotal);
53   float crossCheckHorizontal(size_t startJ, size_t centerI, int maxCount, int originalStateCountTotal);
54
55   /** stateCount must be int[5] */
56   bool handlePossibleCenter(int* stateCount, size_t i, size_t j);
57   int findRowSkip();
58   bool haveMultiplyConfirmedCenters();
59   std::vector<Ref<FinderPattern> > selectBestPatterns();
60   static std::vector<Ref<FinderPattern> > orderBestPatterns(std::vector<Ref<FinderPattern> > patterns);
61 public:
62   static float distance(Ref<ResultPoint> p1, Ref<ResultPoint> p2);
63   FinderPatternFinder(Ref<BitMatrix> image, Ref<ResultPointCallback>const&);
64   Ref<FinderPatternInfo> find(DecodeHints const& hints);
65 };
66 }
67 }
68
69 #endif // __FINDER_PATTERN_FINDER_H__