OpenCV 4.5.3(日本語機械翻訳)
checker_detector.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_DETECTOR_HPP__
30 #define __OPENCV_MCC_CHECKER_DETECTOR_HPP__
31 #include <opencv2/core.hpp>
32 #include "checker_model.hpp"
33 #include <opencv2/dnn.hpp>
34
35 //----------To view debugging output-----------------------------
36 //Read the tutorial on how to use debugging in this module
37 //It can be found in the documentation of 'mcc' modules,
38 //Then uncomment the following line to view debugging output
39 //---------------------------------------------------------------
40 // #define MCC_DEBUG
41 //---------------------------------------------------------------
42
43 namespace cv
44{
45 namespace mcc
46{
49
99 struct CV_EXPORTS_W DetectorParameters
100{
101
103
104 CV_WRAP static Ptr<DetectorParameters> create();
105
106 CV_PROP_RW int adaptiveThreshWinSizeMin;
107 CV_PROP_RW int adaptiveThreshWinSizeMax;
108 CV_PROP_RW int adaptiveThreshWinSizeStep;
109 CV_PROP_RW double adaptiveThreshConstant;
110 CV_PROP_RW double minContoursAreaRate;
111 CV_PROP_RW double minContoursArea;
112 CV_PROP_RW double confidenceThreshold;
113 CV_PROP_RW double minContourSolidity;
114 CV_PROP_RW double findCandidatesApproxPolyDPEpsMultiplier;
115 CV_PROP_RW int borderWidth;
116 CV_PROP_RW float B0factor;
117 CV_PROP_RW float maxError;
118 CV_PROP_RW int minContourPointsAllowed;
119 CV_PROP_RW int minContourLengthAllowed;
120 CV_PROP_RW int minInterContourDistance;
121 CV_PROP_RW int minInterCheckerDistance;
122 CV_PROP_RW int minImageSize;
123 CV_PROP_RW unsigned minGroupSize;
124};
125
129 class CV_EXPORTS_W CCheckerDetector : public Algorithm
130{
131 public:
144 CV_WRAP virtual bool setNet(dnn::Net net) = 0;
145
166 CV_WRAP_AS(processWithROI) virtual bool
167 process(InputArray image, const TYPECHART chartType,
168 const std::vector<Rect> &regionsOfInterest,
169 const int nc = 1, bool useNet = false,
170 const Ptr<DetectorParameters> &params = DetectorParameters::create()) = 0;
171
172
194 CV_WRAP virtual bool
195 process(InputArray image, const TYPECHART chartType,
196 const int nc = 1, bool useNet = false,
197 const Ptr<DetectorParameters> &params = DetectorParameters::create()) = 0;
198
204 CV_WRAP virtual Ptr<mcc::CChecker> getBestColorChecker() = 0;
205
209 CV_WRAP virtual std::vector<Ptr<CChecker>> getListColorChecker() = 0;
210
214 CV_WRAP static Ptr<CCheckerDetector> create();
215};
216
218
219} // namespace mcc
220} // namespace cv
221
222 #endif
This is a base class for all more or less complex algorithms in OpenCV
Definition: core.hpp:3091
This class allows to create and manipulate comprehensive artificial neural networks.
Definition: dnn/dnn.hpp:407
A class to find the positions of the ColorCharts in the image.
Definition: checker_detector.hpp:130
virtual CV_WRAP bool process(InputArray image, const TYPECHART chartType, const int nc=1, bool useNet=false, const Ptr< DetectorParameters > &params=DetectorParameters::create())=0
Find the ColorCharts in the given image.
CV_WRAP_AS(processWithROI) virtual bool process(InputArray image
Find the ColorCharts in the given image.
TYPECHART
enum to hold the type of the checker
Definition: checker_model.hpp:47
cv
"black box" representation of the file storage associated with a file on disk.
Definition: aruco.hpp:75
Definition: cvstd_wrapper.hpp:74
Parameters for the detectMarker process:
Definition: checker_detector.hpp:100