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