OpenCV 4.5.3(日本語機械翻訳)
checker_model.hpp
1 // This file is part of OpenCV project.
2 // It is subject to the license terms in the LICENSE file found in the top-level directory
3 // of this distribution and at http://opencv.org/license.html.
4
5 /*
6 * MIT License
7 *
8 * Copyright (c) 2018 Pedro Diamel Marrero Fernández
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in all
18 * copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26 * SOFTWARE.
27 */
28
29 #ifndef __OPENCV_MCC_CHECKER_MODEL_HPP__
30 #define __OPENCV_MCC_CHECKER_MODEL_HPP__
31 #include <opencv2/core.hpp>
32 #include <opencv2/imgproc.hpp>
33 namespace cv
34{
35 namespace mcc
36{
37
40
47{
48 MCC24 = 0,
51
52};
53
64 class CV_EXPORTS_W CChecker
65{
66 public:
67 CChecker() {}
68 virtual ~CChecker() {}
73 CV_WRAP static Ptr<CChecker> create();
74
75 public:
76 // CV_PROP_RW TYPECHART target; ///< type of checkercolor
77 // CV_PROP_RW std::vector<cv::Point2f> box; ///< positions of the corners
78 // CV_PROP_RW cv::Mat charts_rgb; ///< charts profile in rgb color space
79 // CV_PROP_RW cv::Mat charts_ycbcr; ///< charts profile in YCbCr color space
80 // CV_PROP_RW float cost; ///< cost to aproximate
81 // CV_PROP_RW cv::Point2f center; ///< center of the chart.
82
83 CV_WRAP virtual void setTarget(TYPECHART _target) = 0;
84 CV_WRAP virtual void setBox(std::vector<Point2f> _box) = 0;
85 CV_WRAP virtual void setChartsRGB(Mat _chartsRGB) = 0;
86 CV_WRAP virtual void setChartsYCbCr(Mat _chartsYCbCr) = 0;
87 CV_WRAP virtual void setCost(float _cost) = 0;
88 CV_WRAP virtual void setCenter(Point2f _center) = 0;
89
90 CV_WRAP virtual TYPECHART getTarget() = 0;
91 CV_WRAP virtual std::vector<Point2f> getBox() = 0;
92 CV_WRAP virtual Mat getChartsRGB() = 0;
93 CV_WRAP virtual Mat getChartsYCbCr() = 0;
94 CV_WRAP virtual float getCost() = 0;
95 CV_WRAP virtual Point2f getCenter() = 0;
96};
97
112 class CV_EXPORTS_W CCheckerDraw
113{
114
115 public:
116 virtual ~CCheckerDraw() {}
121 CV_WRAP virtual void draw(InputOutputArray img) = 0;
130 CV_WRAP static Ptr<CCheckerDraw> create(Ptr<CChecker> pChecker,
131 cv::Scalar color = CV_RGB(0, 250, 0),
132 int thickness = 2);
133};
134
136} // namespace mcc
137} // namespace cv
138
139 #endif
Definition: mat.hpp:386
n-dimensional dense array class
Definition: mat.hpp:802
checker draw
Definition: checker_model.hpp:113
checker object
Definition: checker_model.hpp:65
#define CV_RGB(r, g, b)
Definition: imgproc.hpp:4378
TYPECHART
enum to hold the type of the checker
Definition: checker_model.hpp:47
@ MCC24
Standard Macbeth Chart with 24 squares
Definition: checker_model.hpp:48
@ VINYL18
DKK color chart with 12 squares and 6 rectangle
Definition: checker_model.hpp:50
@ SG140
DigitalSG with 140 squares
Definition: checker_model.hpp:49
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74