|
| QRCodeDetectorAruco () |
|
| QRCodeDetectorAruco (const QRCodeDetectorAruco::Params ¶ms) |
| QR code detector constructor for Aruco-based algorithm. See cv::QRCodeDetectorAruco::Params.
|
|
const aruco::DetectorParameters & | getArucoParameters () const |
| Aruco detector parameters are used to search for the finder patterns.
|
|
const QRCodeDetectorAruco::Params & | getDetectorParameters () const |
| Detector parameters getter. See cv::QRCodeDetectorAruco::Params.
|
|
void | setArucoParameters (const aruco::DetectorParameters ¶ms) |
| Aruco detector parameters are used to search for the finder patterns.
|
|
QRCodeDetectorAruco & | setDetectorParameters (const QRCodeDetectorAruco::Params ¶ms) |
| Detector parameters setter. See cv::QRCodeDetectorAruco::Params.
|
|
| GraphicalCodeDetector () |
|
| GraphicalCodeDetector (const GraphicalCodeDetector &)=default |
|
| GraphicalCodeDetector (GraphicalCodeDetector &&)=default |
|
std::string | decode (InputArray img, InputArray points, OutputArray straight_code=noArray()) const |
| Decodes graphical code in image once it's found by the detect() method.
|
|
bool | decodeMulti (InputArray img, InputArray points, std::vector< std::string > &decoded_info, OutputArrayOfArrays straight_code=noArray()) const |
| Decodes graphical codes in image once it's found by the detect() method.
|
|
bool | detect (InputArray img, OutputArray points) const |
| Detects graphical code in image and returns the quadrangle containing the code.
|
|
std::string | detectAndDecode (InputArray img, OutputArray points=noArray(), OutputArray straight_code=noArray()) const |
| Both detects and decodes graphical code.
|
|
bool | detectAndDecodeMulti (InputArray img, std::vector< std::string > &decoded_info, OutputArray points=noArray(), OutputArrayOfArrays straight_code=noArray()) const |
| Both detects and decodes graphical codes.
|
|
bool | detectMulti (InputArray img, OutputArray points) const |
| Detects graphical codes in image and returns the vector of the quadrangles containing the codes.
|
|
GraphicalCodeDetector & | operator= (const GraphicalCodeDetector &)=default |
|
GraphicalCodeDetector & | operator= (GraphicalCodeDetector &&)=default |
|