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>
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;
167 process(InputArray image,
const TYPECHART chartType,
168 const std::vector<Rect> ®ionsOfInterest,
169 const int nc = 1,
bool useNet =
false,
196 const int nc = 1,
bool useNet =
false,
209 CV_WRAP
virtual std::vector<Ptr<CChecker>> getListColorChecker() = 0;
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 > ¶ms=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
"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