Many changes to the C++ port.
[zxing.git] / cpp / core / src / zxing / common / DetectorResult.h
1 #ifndef __DETECTOR_RESULT_H__
2 #define __DETECTOR_RESULT_H__
3
4 /*
5  *  DetectorResult.h
6  *  zxing
7  *
8  *  Created by Christian Brunschen on 14/05/2008.
9  *  Copyright 2008 ZXing authors All rights reserved.
10  *
11  * Licensed under the Apache License, Version 2.0 (the "License");
12  * you may not use this file except in compliance with the License.
13  * You may obtain a copy of the License at
14  *
15  *      http://www.apache.org/licenses/LICENSE-2.0
16  *
17  * Unless required by applicable law or agreed to in writing, software
18  * distributed under the License is distributed on an "AS IS" BASIS,
19  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20  * See the License for the specific language governing permissions and
21  * limitations under the License.
22  */
23
24 #include <vector>
25 #include <zxing/common/Counted.h>
26 #include <zxing/common/Array.h>
27 #include <zxing/common/BitMatrix.h>
28 #include <zxing/ResultPoint.h>
29 #include <zxing/common/PerspectiveTransform.h>
30
31 namespace zxing {
32
33 class DetectorResult : public Counted {
34 private:
35   Ref<BitMatrix> bits_;
36   std::vector<Ref<ResultPoint> > points_;
37   Ref<PerspectiveTransform> transform_;
38
39 public:
40   DetectorResult(Ref<BitMatrix> bits, std::vector<Ref<ResultPoint> > points, Ref<PerspectiveTransform> transform);
41   Ref<BitMatrix> getBits();
42   std::vector<Ref<ResultPoint> > getPoints();
43   Ref<PerspectiveTransform> getTransform();
44 };
45 }
46
47 #endif // __DETECTOR_RESULT_H__