Class MarkerDetector_Impl
Defined in File markerdetector_impl.h
Nested Relationships
Nested Types
Class Documentation
-
class MarkerDetector_Impl
Main class for marker detection.
Public Functions
-
MarkerDetector_Impl()
See
-
MarkerDetector_Impl(int dict_type, float error_correction_rate = 0)
Creates indicating the dictionary. See
See also
setDictionary for further details
See also
setDictionary for further details
- Parameters:
dict_type – Dictionary employed. See
error_correction_rate – value indicating the correction error allowed. Is in range [0,1]. 0 means no correction at all. So an erroneous bit will result in discarding the marker. 1, mean full correction. The maximum number of bits that can be corrected depends on each ditionary. We recommend using values from 0 to 0.5. (in general, this will allow up to 3 bits or correction).
-
MarkerDetector_Impl(std::string dict_type, float error_correction_rate = 0)
-
void saveParamsToFile(const std::string &path) const
Saves the configuration of the detector to a file.
-
void loadParamsFromFile(const std::string &path)
Loads the configuration from a file.
-
~MarkerDetector_Impl()
-
void setDetectionMode(DetectionMode dm, float minMarkerSize = 0)
Specifies the detection mode. We have preset three types of detection modes. These are ways to configure the internal parameters for the most typical situations. The modes are:
DM_NORMAL: In this mode, the full resolution image is employed for detection and slow threshold method. Use this method when you process individual images that are not part of a video sequence and you are not interested in speed.
DM_FAST: In this mode, there are two main improvements. First, image is threshold using a faster method using a global threshold. Also, the full resolution image is employed for detection, but, you could speed up detection even more by indicating a minimum size of the markers you will accept. This is set by the variable minMarkerSize which shoud be in range [0,1]. When it is 0, means that you do not set a limit in the size of the accepted markers. However, if you set 0.1, it means that markers smaller than 10% of the total image area, will not be detected. Then, the detection can be accelated up to orders of magnitude compared to the normal mode.
DM_VIDEO_FAST: This is similar to DM_FAST, but specially adapted to video processing. In that case, we assume that the observed markers when you call to detect() have a size similar to the ones observed in the previous frame. Then, the processing can be speeded up by employing smaller versions of the image automatically calculated.
-
DetectionMode getDetectionMode()
returns current detection mode
-
std::vector<aruco::Marker> detect(const cv::Mat &input)
Detects the markers in the image passed
If you provide information about the camera parameters and the size of the marker, then, the extrinsics of the markers are detected
- Parameters:
input – input color image
camMatrix – intrinsic camera information.
distCoeff – camera distorsion coefficient. If set Mat() if is assumed no camera distorion
markerSizeMeters – size of the marker sides expressed in meters. If not specified this value, the extrinsics of the markers are not detected.
setYPerperdicular – If set the Y axis will be perpendicular to the surface. Otherwise, it will be the Z axis
correctFisheye – Correct fisheye distortion
- Returns:
vector with the detected markers
-
std::vector<aruco::Marker> detect(const cv::Mat &input, const CameraParameters &camParams, float markerSizeMeters, bool setYPerperdicular = false, bool correctFisheye = false)
-
void detect(const cv::Mat &input, std::vector<Marker> &detectedMarkers, CameraParameters camParams, float markerSizeMeters = -1, bool setYPerperdicular = false, bool correctFisheye = false)
Detects the markers in the image passed
If you provide information about the camera parameters and the size of the marker, then, the extrinsics of the markers are detected
- Parameters:
input – input color image
detectedMarkers – output vector with the markers detected
camParams – Camera parameters
markerSizeMeters – size of the marker sides expressed in meters
setYPerperdicular – If set the Y axis will be perpendicular to the surface. Otherwise, it will be the Z axis
correctFisheye – Correct fisheye distortion
-
void detect(const cv::Mat &input, std::vector<Marker> &detectedMarkers, cv::Mat camMatrix = cv::Mat(), cv::Mat distCoeff = cv::Mat(), cv::Mat extrinsics = cv::Mat(), float markerSizeMeters = -1, bool setYPerperdicular = false, bool correctFisheye = false)
Detects the markers in the image passed
If you provide information about the camera parameters and the size of the marker, then, the extrinsics of the markers are detected
NOTE: be sure that the camera matrix is for this image size. If you do not know what I am talking about, use functions above and not this one
- Parameters:
input – input color image
detectedMarkers – output vector with the markers detected
camMatrix – intrinsic camera information.
distCoeff – camera distorsion coefficient. If set Mat() if is assumed no camera distorion
extrinsics – translation (tx,ty,tz) from right stereo camera to left. Empty if no stereo or left camera
markerSizeMeters – size of the marker sides expressed in meters
setYPerperdicular – If set the Y axis will be perpendicular to the surface. Otherwise, it will be the Z axis
correctFisheye – Correct fisheye distortion
-
inline MarkerDetector::Params getParameters() const
Returns operating params
-
inline MarkerDetector::Params &getParameters()
Returns operating params
-
void setDictionary(std::string dict_type, float error_correction_rate = 0)
Sets the dictionary to be employed. You can choose:ARUCO,//original aruco dictionary. By default ARUCO_MIP_25h7, ARUCO_MIP_16h3, ARUCO_MIP_36h12, **** recommended ARTAG,// ARTOOLKITPLUS, ARTOOLKITPLUSBCH,// TAG16h5,TAG25h7,TAG25h9,TAG36h11,TAG36h10//APRIL TAGS DICIONARIES CHILITAGS,//chili tags dictionary . NOT RECOMMENDED. It has distance 0. Markers 806 and 682 should not be used!!!
If dict_type is none of the above ones, it is assumed you mean a CUSTOM dicionary saved in a file
See also
Dictionary::loadFromFile Then, it tries to open it
-
void setDictionary(int dict_type, float error_correction_rate = 0)
setDictionary Specifies the dictionary you want to use for marker decoding
See also
- Parameters:
dict_type – dictionary employed for decoding markers
error_correction_rate – value indicating the correction error allowed. Is in range [0,1]. 0 means no correction at all. So an erroneous bit will result in discarding the marker. 1, mean full correction. The maximum number of bits that can be corrected depends on each ditionary. We recommend using values from 0 to 0.5. (in general, this will allow up to 3 bits or correction).
-
cv::Mat getThresholdedImage(uint32_t idx = 0)
Returns a reference to the internal image thresholded. Since there can be generated many of them, specify which
-
void setMarkerLabeler(cv::Ptr<MarkerLabeler> detector)
setMakerLabeler sets the labeler employed to analyze the squares and extract the inner binary code
returns the number of thresholed images available
Methods you may not need
-
inline cv::Ptr<MarkerLabeler> getMarkerLabeler()
-
inline std::vector<MarkerCandidate> getCandidates() const
Returns a list candidates to be markers (rectangles), for which no valid id was found after calling detectRectangles
-
bool warp(cv::Mat &in, cv::Mat &out, cv::Size size, std::vector<cv::Point2f> points)
Given the iput image with markers, creates an output image with it in the canonical position
- Parameters:
in – input image
out – image with the marker
size – of out
points – 4 corners of the marker in the image in
- Returns:
true if the operation succeed
-
void toStream(std::ostream &str) const
-
void fromStream(std::istream &str)
-
void setParameters(const MarkerDetector::Params ¶ms)
-
inline std::vector<cv::Mat> getImagePyramid()
-
MarkerDetector_Impl()