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