@@ -28,10 +28,10 @@ export declare class QRCodeDetectorAruco_Params {
2828
2929/** 
3030 * QR Code detection and decoding class using Aruco-based detection. 
31-  *   
31+  * 
3232 * This class implements QR code detection and decoding functionality using 
3333 * Aruco marker detection techniques for improved robustness. 
34-  *   
34+  * 
3535 * Source: 
3636 * [opencv2/objdetect.hpp](https://github.com/opencv/opencv/tree/master/modules/objdetect/include/opencv2/objdetect.hpp). 
3737 */ 
@@ -43,56 +43,56 @@ export declare class QRCodeDetectorAruco {
4343
4444  /** 
4545   * QRCodeDetectorAruco constructor with parameters 
46-    *   
46+    * 
4747   * @param  params QRCodeDetectorAruco parameters 
4848   */ 
4949  public  constructor ( params : QRCodeDetectorAruco_Params ) ; 
5050
5151  /** 
5252   * Detects QR code in image and returns the quadrangle containing the code. 
53-    *   
53+    * 
5454   * @param  img grayscale or color (BGR) image containing (or not) QR code. 
5555   * @param  points Output vector of vertices of the minimum-area quadrangle containing the code. 
5656   */ 
5757  public  detect ( img : InputArray ,  points : OutputArray ) : bool ; 
5858
5959  /** 
6060   * Decodes QR code in image once it's found by the detect() method. 
61-    *   
61+    * 
6262   * @param  img grayscale or color (BGR) image containing QR code. 
6363   * @param  points Quadrangle vertices found by detect() method (or some other algorithm). 
6464   * @param  straight_qrcode The optional output image containing rectified and binarized QR code 
6565   */ 
6666  public  decode ( 
6767    img : InputArray , 
6868    points : InputArray , 
69-     straight_qrcode ?: OutputArray 
69+     straight_qrcode ?: OutputArray , 
7070  ) : String ; 
7171
7272  /** 
7373   * Both detects and decodes QR code 
74-    *   
74+    * 
7575   * @param  img grayscale or color (BGR) image containing QR code. 
7676   * @param  points optional output array of vertices of the found QR code quadrangle. Will be empty if not found. 
7777   * @param  straight_qrcode The optional output image containing rectified and binarized QR code 
7878   */ 
7979  public  detectAndDecode ( 
8080    img : InputArray , 
8181    points ?: OutputArray , 
82-     straight_qrcode ?: OutputArray 
82+     straight_qrcode ?: OutputArray , 
8383  ) : String ; 
8484
8585  /** 
8686   * Detects QR codes in image and returns the vector of the quadrangles containing the codes. 
87-    *   
87+    * 
8888   * @param  img grayscale or color (BGR) image containing (or not) QR codes. 
8989   * @param  points Output vector of vector of vertices of the minimum-area quadrangle containing the codes. 
9090   */ 
9191  public  detectMulti ( img : InputArray ,  points : OutputArrayOfArrays ) : bool ; 
9292
9393  /** 
9494   * Decodes QR codes in image once it's found by the detectMulti() method. 
95-    *   
95+    * 
9696   * @param  img grayscale or color (BGR) image containing QR codes. 
9797   * @param  points vector of Quadrangle vertices found by detectMulti() method (or some other algorithm). 
9898   * @param  decoded_info UTF8-encoded output vector of String or empty vector of String if the codes cannot be decoded. 
@@ -102,12 +102,12 @@ export declare class QRCodeDetectorAruco {
102102    img : InputArray , 
103103    points : InputArray , 
104104    decoded_info : any , 
105-     straight_qrcode ?: OutputArrayOfArrays 
105+     straight_qrcode ?: OutputArrayOfArrays , 
106106  ) : bool ; 
107107
108108  /** 
109109   * Both detects and decodes QR codes 
110-    *   
110+    * 
111111   * @param  img grayscale or color (BGR) image containing QR codes. 
112112   * @param  decoded_info UTF8-encoded output vector of String or empty vector of String if the codes cannot be decoded. 
113113   * @param  points optional output vector of vertices of the found QR code quadrangles. Will be empty if not found. 
@@ -117,7 +117,7 @@ export declare class QRCodeDetectorAruco {
117117    img : InputArray , 
118118    decoded_info : any , 
119119    points ?: OutputArrayOfArrays , 
120-     straight_qrcode ?: OutputArrayOfArrays 
120+     straight_qrcode ?: OutputArrayOfArrays , 
121121  ) : bool ; 
122122
123123  /** 
@@ -127,7 +127,7 @@ export declare class QRCodeDetectorAruco {
127127
128128  /** 
129129   * Set detector parameters 
130-    *   
130+    * 
131131   * @param  params QRCodeDetectorAruco parameters 
132132   */ 
133133  public  setDetectorParameters ( params : QRCodeDetectorAruco_Params ) : void ; 
@@ -136,4 +136,4 @@ export declare class QRCodeDetectorAruco {
136136   * Releases the object 
137137   */ 
138138  public  delete ( ) : void ; 
139- } 
139+ } 
0 commit comments