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