Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef ArucoFiducicalMarkerDetector_H
00030 #define ArucoFiducicalMarkerDetector_H
00031 #include <opencv2/core/core.hpp>
00032 #include "exports.h"
00033 #include "marker.h"
00034 #include "board.h"
00035 namespace aruco {
00036
00037 class ARUCO_EXPORTS FiducidalMarkers {
00038 public:
00066 static cv::Mat createMarkerImage(int id,int size,bool writeIdWaterMark=true) throw (cv::Exception);
00067
00073 static int detect(const cv::Mat &in,int &nRotations);
00074
00077 static cv::Mat getMarkerMat(int id) throw (cv::Exception);
00078
00079
00087 static cv::Mat createBoardImage( cv::Size gridSize,int MarkerSize,int MarkerDistance, BoardConfiguration& TInfo ,vector<int> *excludedIds=NULL ) throw (cv::Exception);
00088
00089
00097 static cv::Mat createBoardImage_ChessBoard( cv::Size gridSize,int MarkerSize, BoardConfiguration& TInfo ,bool setDataCentered=true ,vector<int> *excludedIds=NULL) throw (cv::Exception);
00098
00107 static cv::Mat createBoardImage_Frame( cv::Size gridSize,int MarkerSize,int MarkerDistance, BoardConfiguration& TInfo ,bool setDataCentered=true,vector<int> *excludedIds=NULL ) throw (cv::Exception);
00108
00109 private:
00110
00111 static vector<int> getListOfValidMarkersIds_random(int nMarkers,vector<int> *excluded) throw (cv::Exception);
00112 static cv::Mat rotate(const cv::Mat & in);
00113 static int hammDistMarker(cv::Mat bits);
00114 static int analyzeMarkerImage(cv::Mat &grey,int &nRotations);
00115 static bool correctHammMarker(cv::Mat &bits);
00116 };
00117
00118 }
00119
00120 #endif