mexopencv
3.4.1
MEX interface for OpenCV library
|
Implementation of mexopencv_aruco. More...
Go to the source code of this file.
Functions | |
Ptr< DetectorParameters > | MxArrayToDetectorParameters (const MxArray &s) |
Convert MxArray to cv::Ptr<cv::aruco::DetectorParameters> More... | |
Ptr< Dictionary > | MxArrayToDictionary (const MxArray &arr) |
Convert MxArray to cv::Ptr<cv::aruco::Dictionary> More... | |
Ptr< Board > | MxArrayToBoard (const MxArray &arr) |
Convert MxArray to cv::Ptr<cv::aruco::Board> More... | |
MxArray | toStruct (const Ptr< DetectorParameters > ¶ms) |
Convert detector parameters to scalar struct. More... | |
MxArray | toStruct (const Ptr< Dictionary > &dictionary) |
MxArray | toStruct (const Ptr< Board > &board) |
Convert Board to scalar struct. More... | |
MxArray | toStruct (const Ptr< GridBoard > &board) |
Convert GridBoard to scalar struct. More... | |
MxArray | toStruct (const Ptr< CharucoBoard > &board) |
Convert CharucoBoard to scalar struct. More... | |
Ptr< Board > | create_Board (vector< MxArray >::const_iterator first, vector< MxArray >::const_iterator last) |
Create an instance of Board using options in arguments. More... | |
Ptr< GridBoard > | create_GridBoard (vector< MxArray >::const_iterator first, vector< MxArray >::const_iterator last) |
Create an instance of GridBoard using options in arguments. More... | |
Ptr< CharucoBoard > | create_CharucoBoard (vector< MxArray >::const_iterator first, vector< MxArray >::const_iterator last) |
Create an instance of CharucoBoard using options in arguments. More... | |
Ptr<Board> create_Board | ( | std::vector< MxArray >::const_iterator | first, |
std::vector< MxArray >::const_iterator | last | ||
) |
Create an instance of Board using options in arguments.
first | iterator at the beginning of the vector range |
last | iterator at the end of the vector range |
Definition at line 274 of file mexopencv_aruco.cpp.
Ptr<CharucoBoard> create_CharucoBoard | ( | std::vector< MxArray >::const_iterator | first, |
std::vector< MxArray >::const_iterator | last | ||
) |
Create an instance of CharucoBoard using options in arguments.
first | iterator at the beginning of the vector range |
last | iterator at the end of the vector range |
Definition at line 312 of file mexopencv_aruco.cpp.
Ptr<GridBoard> create_GridBoard | ( | std::vector< MxArray >::const_iterator | first, |
std::vector< MxArray >::const_iterator | last | ||
) |
Create an instance of GridBoard using options in arguments.
first | iterator at the beginning of the vector range |
last | iterator at the end of the vector range |
Definition at line 287 of file mexopencv_aruco.cpp.
Convert MxArray to cv::Ptr<cv::aruco::Board>
arr | MxArray object. In one of the following forms:
|
Definition at line 141 of file mexopencv_aruco.cpp.
Ptr<DetectorParameters> MxArrayToDetectorParameters | ( | const MxArray & | s | ) |
Convert MxArray to cv::Ptr<cv::aruco::DetectorParameters>
s | scalar struct MxArray object |
Definition at line 18 of file mexopencv_aruco.cpp.
Ptr<Dictionary> MxArrayToDictionary | ( | const MxArray & | arr | ) |
Convert MxArray to cv::Ptr<cv::aruco::Dictionary>
arr | MxArray object. In one of the following forms:
|
Definition at line 71 of file mexopencv_aruco.cpp.
MxArray toStruct | ( | const cv::Ptr< cv::aruco::DetectorParameters > & | params | ) |
Convert detector parameters to scalar struct.
params | smart pointer to an instance of detector parameters |
Definition at line 169 of file mexopencv_aruco.cpp.
MxArray toStruct | ( | const Ptr< Dictionary > & | dictionary | ) |
Definition at line 209 of file mexopencv_aruco.cpp.
MxArray toStruct | ( | const cv::Ptr< cv::aruco::Board > & | board | ) |
Convert Board to scalar struct.
board | smart pointer to an instance of Board |
Definition at line 229 of file mexopencv_aruco.cpp.
MxArray toStruct | ( | const cv::Ptr< cv::aruco::GridBoard > & | board | ) |
Convert GridBoard to scalar struct.
board | smart pointer to an instance of GridBoard |
Definition at line 239 of file mexopencv_aruco.cpp.
MxArray toStruct | ( | const cv::Ptr< cv::aruco::CharucoBoard > & | board | ) |
Convert CharucoBoard to scalar struct.
board | smart pointer to an instance of CharucoBoard |
Definition at line 253 of file mexopencv_aruco.cpp.